igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
23 lines (22 loc) • 551 B
JavaScript
import { IgxCancelEventArgs } from "igniteui-angular-core";
/**
* Event arguments for the
* editModeEntering event.
*/
export class IgxSpreadsheetEditModeEnteringEventArgs extends IgxCancelEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor() {
super();
}
/**
* Returns the cell for which the control is going into edit mode.
*/
get cell() {
return this.i.cell;
}
}