igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
28 lines (27 loc) • 585 B
JavaScript
/**
* Event arguments for the
* selectionChanged event.
*/
export class IgxSpreadsheetSelectionChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Returns the pane whose selection has been changed.
*/
get pane() {
return this.i.pane;
}
}