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 TableRemovedSubDocumentChange {
constructor(subDocumentId, startPosition, endPosition, nestedLevel, removedText) {
this.subDocumentId = subDocumentId;
this.startPosition = startPosition;
this.endPosition = endPosition;
this.nestedLevel = nestedLevel;
this.removedText = removedText;
this.type = ModelChangeType.TableRemoved;
}
}