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