igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
39 lines (38 loc) • 903 B
JavaScript
/**
* Provides information about row expansion or collapse.
*/
export class IgxDataSourceRowExpansionChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* The index of the row being expanded or collapsed.
*/
get rowIndex() {
return this.i.rowIndex;
}
/**
* The previous state of the row. True is expanded, False is collapsed.
*/
get oldState() {
return this.i.oldState;
}
/**
* The new state of the row. True is expanded, False is collapsed.
*/
get newState() {
return this.i.newState;
}
}