UNPKG

devexpress-richedit

Version:

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

23 lines (22 loc) 816 B
import { ContentInsertedSubDocumentChange } from '../../change-base'; import { ModelChangeType } from '../../enums'; export class SimpleRunInsertedSubDocumentChange extends ContentInsertedSubDocumentChange { subDocumentId; position; length; characterProperties; characterStyle; runType; text; type = ModelChangeType.SimpleRunInserted; constructor(subDocumentId, position, length, characterProperties, characterStyle, runType, text) { super(subDocumentId, position, length); this.subDocumentId = subDocumentId; this.position = position; this.length = length; this.characterProperties = characterProperties; this.characterStyle = characterStyle; this.runType = runType; this.text = text; } }