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) 594 B
/** * Event arguments for the * editModeEntered event. */ export class IgxSpreadsheetEditModeEnteredEventArgs { 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 entered edit mode. */ get cell() { return this.i.cell; } }