UNPKG

devexpress-richedit

Version:

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

17 lines (16 loc) 680 B
import { ContentInsertedSubDocumentChange } from '../../change-base'; import { ModelChangeType } from '../../enums'; export class AnchoredTextBoxInsertedSubDocumentChange extends ContentInsertedSubDocumentChange { objectId; innerSubDocId; anchorInfo; containerProperties; type = ModelChangeType.AnchoredTextBoxInserted; constructor(subDocumentId, objectId, innerSubDocId, position, anchorInfo, containerProperties) { super(subDocumentId, position, 1); this.objectId = objectId; this.innerSubDocId = innerSubDocId; this.anchorInfo = anchorInfo; this.containerProperties = containerProperties; } }