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