devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 1 kB
TypeScript
import { ICloneable, ISupportCopyFrom, SimpleConverter } from '@devexpress/utils/lib/types';
import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { DialogParametersBase, ShowDialogCommandBase } from './show-dialog-command-base';
export declare class DialogInsertTableCommand extends ShowDialogCommandBase<InsertTableDialogParameters> {
createParameters(_options: ICommandOptions): InsertTableDialogParameters;
applyParameters(_state: SimpleCommandState, params: InsertTableDialogParameters): boolean;
getDialogName(): string;
}
export declare class InsertTableDialogParameters extends DialogParametersBase implements ISupportCopyFrom<InsertTableDialogParameters>, ICloneable<InsertTableDialogParameters> {
rowCount: number;
columnCount: number;
copyFrom(obj: InsertTableDialogParameters): void;
clone(): InsertTableDialogParameters;
applyConverter(_converter: SimpleConverter<number>): this;
}