UNPKG

devexpress-richedit

Version:

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

19 lines (18 loc) 680 B
import { ContentInsertedSubDocumentChange } from '../../change-base'; import { ModelChangeType } from '../../enums'; export class AnchoredPictureInsertedSubDocumentChange extends ContentInsertedSubDocumentChange { objectId; id; size; anchorInfo; containerProperties; type = ModelChangeType.AnchoredPictureInserted; constructor(subDocumentId, objectId, position, id, size, anchorInfo, containerProperties) { super(subDocumentId, position, 1); this.objectId = objectId; this.id = id; this.size = size; this.anchorInfo = anchorInfo; this.containerProperties = containerProperties; } }