UNPKG

igniteui-angular-spreadsheet

Version:

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

30 lines (29 loc) 734 B
import { IgxCancelEventArgs } from "igniteui-angular-core"; /** * Event arguments for the * actionExecuting event. */ export class IgxSpreadsheetActionExecutingEventArgs extends IgxCancelEventArgs { /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Returns the command which will be executed on the * Spreadsheet. */ get command() { return this.i.command; } /** * Returns the parameter which will be used when executing the command. */ get commandParameter() { return this.i.commandParameter; } }