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