UNPKG

igniteui-angular-spreadsheet

Version:

Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.

28 lines (27 loc) 592 B
/** * Event arguments for the * editModeExited event. */ export class IgxSpreadsheetEditModeExitedEventArgs { constructor() { } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } /** * Returns the cell for which the control has exitied edit mode. */ get cell() { return this.i.cell; } }