devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 950 B
TypeScript
import { ModelManipulator } from '../../../manipulators/model-manipulator';
import { SubDocument } from '../../../sub-document';
import { TableBasedHistoryItem } from './create-table-history-item';
export declare class SplitTableCellToTheLeftHistoryItem extends TableBasedHistoryItem {
rowIndex: number;
cellIndex: number;
copyProperties: boolean;
constructor(modelManipulator: ModelManipulator, boundSubDocument: SubDocument, tableIndex: number, rowIndex: number, cellIndex: number, copyProperties: boolean);
redo(): void;
undo(): void;
}
export declare class SplitTableCellToTheRightHistoryItem extends TableBasedHistoryItem {
rowIndex: number;
cellIndex: number;
copyProperties: boolean;
constructor(modelManipulator: ModelManipulator, boundSubDocument: SubDocument, tableIndex: number, rowIndex: number, cellIndex: number, copyProperties: boolean);
redo(): void;
undo(): void;
}