@syncfusion/ej2-spreadsheet
Version:
Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel
35 lines (34 loc) • 912 B
TypeScript
import { Workbook } from '../base/index';
/**
* The `WorkbookInsert` module is used to insert cells, rows, columns and sheets in to workbook.
*/
export declare class WorkbookInsert {
private parent;
/**
* Constructor for the workbook insert module.
*
* @param {Workbook} parent - Specifies the workbook.
* @private
*/
constructor(parent: Workbook);
private insertModel;
private setRowColCount;
private updateRangeModel;
private checkBorder;
private setInsertInfo;
private insertConditionalFormats;
private addEventListener;
/**
* Destroy workbook insert module.
*
* @returns {void} - destroy the workbook insert module.
*/
destroy(): void;
private removeEventListener;
/**
* Get the workbook insert module name.
*
* @returns {string} - Return the string.
*/
getModuleName(): string;
}