@syncfusion/ej2-spreadsheet
Version:
Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel
31 lines (30 loc) • 786 B
TypeScript
import { Spreadsheet } from '../base/index';
/**
* The `Insert` module is used to insert cells, rows, columns and sheets in to the spreadsheet.
*/
export declare class Insert {
private parent;
/**
* Constructor for the Spreadsheet insert module.
*
* @param {Spreadsheet} parent - Specify the spreadsheet instance.
* @private
*/
constructor(parent: Spreadsheet);
private insert;
private refreshImgChartElement;
private addEventListener;
/**
* Destroy insert module.
*
* @returns {void} - Destroy insert module.
*/
destroy(): void;
private removeEventListener;
/**
* Get the insert module name.
*
* @returns {string} - Get the insert module name.
*/
getModuleName(): string;
}