devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 588 B
TypeScript
import { Table } from '../../../tables/main-structures/table';
import { SubDocumentChangeBase } from '../../change-base';
import { ModelChangeType } from '../../enums';
export declare class TableCellSplittedHorizontallySubDocumentChange implements SubDocumentChangeBase {
subDocumentId: number;
table: Table;
rowIndex: number;
cellIndex: number;
rightDirection: boolean;
readonly type = ModelChangeType.TableCellSplittedHorizontally;
constructor(subDocumentId: number, table: Table, rowIndex: number, cellIndex: number, rightDirection: boolean);
}