devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 535 B
JavaScript
import { ModelChangeType } from '../../enums';
export class TableCellSplittedHorizontallySubDocumentChange {
subDocumentId;
table;
rowIndex;
cellIndex;
rightDirection;
type = ModelChangeType.TableCellSplittedHorizontally;
constructor(subDocumentId, table, rowIndex, cellIndex, rightDirection) {
this.subDocumentId = subDocumentId;
this.table = table;
this.rowIndex = rowIndex;
this.cellIndex = cellIndex;
this.rightDirection = rightDirection;
}
}