igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
36 lines (35 loc) • 732 B
JavaScript
/**
* Event arguments for the
* activePaneChanged event.
*/
export class IgxSpreadsheetActivePaneChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Returns the new value of the
* activePane
*/
get newValue() {
return this.i.newValue;
}
/**
* Returns the previous value of the
* activePane
*/
get oldValue() {
return this.i.oldValue;
}
}