devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 876 B
TypeScript
import { MaskedCharacterProperties } from '../../../character/character-properties';
import { CharacterStyle } from '../../../character/character-style';
import { RunType } from '../../../runs/run-type';
import { ContentInsertedSubDocumentChange } from '../../change-base';
import { ModelChangeType } from '../../enums';
export declare class SimpleRunInsertedSubDocumentChange extends ContentInsertedSubDocumentChange {
subDocumentId: number;
position: number;
length: number;
characterProperties: MaskedCharacterProperties;
characterStyle: CharacterStyle;
runType: RunType;
text: string;
readonly type = ModelChangeType.SimpleRunInserted;
constructor(subDocumentId: number, position: number, length: number, characterProperties: MaskedCharacterProperties, characterStyle: CharacterStyle, runType: RunType, text: string);
}