UNPKG

@syncfusion/ej2-spreadsheet

Version:

Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel

19 lines (18 loc) 516 B
/** * Defines modes of Selection. */ export declare type SelectionMode = 'None' | 'Single' | 'Multiple'; /** * Defines paste options. */ export declare type PasteSpecialType = 'All' | 'Values' | 'Formats' | 'Formulas'; /** @hidden */ export declare type RefreshType = 'All' | 'Row' | 'Column' | 'RowPart' | 'ColumnPart'; /** * Defines find mode options. */ export declare type FindModeType = 'Sheet' | 'Workbook'; /** * Defines the print modes. */ export declare type PrintType = 'ActiveSheet' | 'Workbook';