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