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