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