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