UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

15 lines (14 loc) 451 B
import { ModelChangeType } from '../../enums'; export class AnchorInfoPropertyChangedSubDocumentChange { subDocumentId; objectId; property; newState; type = ModelChangeType.AnchorInfoPropertyChanged; constructor(subDocumentId, objectId, property, newState) { this.subDocumentId = subDocumentId; this.objectId = objectId; this.property = property; this.newState = newState; } }