UNPKG

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
/** * Event arguments for the * activeCellChanged event. */ export class IgxSpreadsheetActiveCellChangedEventArgs { 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 * activeCell */ get newValue() { return this.i.newValue; } /** * Returns the previous value of the * activeCell */ get oldValue() { return this.i.oldValue; } }