devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 749 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 DeleteTableCellsWithShiftToTheHorizontallyCommand extends TableCommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
isEnabled(): boolean;
executeCore(_state: SimpleCommandState, options: ICommandOptions): boolean;
deleteEntireRow(subDocument: SubDocument, table: Table, rowIndex: number): void;
deleteTableCell(subDocument: SubDocument, table: Table, rowIndex: number, cellIndex: number): void;
}