devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 647 B
TypeScript
import { ModelManipulator } from '../../../manipulators/model-manipulator';
import { SubDocument } from '../../../sub-document';
import { TableCell } from '../../../tables/main-structures/table-cell';
import { TableBasedHistoryItem } from './create-table-history-item';
export declare class RemoveTableCellHistoryItem extends TableBasedHistoryItem {
cellCount: number;
rowIndex: number;
cellIndex: number;
cell: TableCell;
length: number;
constructor(modelManipulator: ModelManipulator, subDocument: SubDocument, tableIndex: number, rowIndex: number, cellIndex: number);
redo(): void;
undo(): void;
}