devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 615 B
TypeScript
import { SubDocument } from '../../model/sub-document';
import { Table } from '../../model/tables/main-structures/table';
import { ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { TableCommandBase } from './table-command-base';
export declare class DeleteTableColumnsCommand extends TableCommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: ICommandOptions): boolean;
normalizeCellVerticalMerging(subDocument: SubDocument, table: Table): void;
}