UNPKG

igniteui-angular-spreadsheet

Version:

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

26 lines (25 loc) 815 B
import { SpreadsheetCommandExecutedEventArgs as SpreadsheetCommandExecutedEventArgs_internal } from "./SpreadsheetCommandExecutedEventArgs"; import { SpreadsheetAction } from "./SpreadsheetAction"; /** * Event arguments for the * actionExecuted event. */ export declare class IgxSpreadsheetActionExecutedEventArgs { protected _implementation: any; /** * @hidden */ get i(): SpreadsheetCommandExecutedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Returns the command which was executed on the * Spreadsheet. */ get command(): SpreadsheetAction; /** * Returns the parameter used when executing the command. */ get commandParameter(): any; }