@syncfusion/ej2-documenteditor
Version:
Feature-rich document editor control with built-in support for context menu, options pane and dialogs.
54 lines (53 loc) • 1.2 kB
TypeScript
import { L10n } from '@syncfusion/ej2-base';
import { DocumentHelper } from '../viewer';
/**
* The Table dialog is used to insert table at selection.
*/
export declare class TableDialog {
private columnsCountBox;
private rowsCountBox;
private target;
/**
* @private
*/
documentHelper: DocumentHelper;
private columnValueTexBox;
private rowValueTextBox;
private localeValue;
private parentDiv;
private columnValue;
private rowValue;
/**
* @param {DocumentHelper} documentHelper - Specifies the document helper
* @private
*/
constructor(documentHelper: DocumentHelper);
private getModuleName;
/**
* @private
* @param {L10n} localValue - Specified the locale value.
* @returns {void}
*/
initTableDialog(localValue: L10n): void;
/**
* @private
* @returns {void}
*/
show(): void;
/**
* @private
* @returns {void}
*/
onCancelButtonClick: () => void;
/**
* @private
* @returns {void}
*/
onInsertTableClick: () => void;
/**
* @private
* @returns {void}
*/
destroy(): void;
private removeElements;
}