UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 820 B
import { MaskedCharacterPropertiesBundle } from '../../../rich-utils/properties-bundle'; import { RunType } from '../../runs/run-type'; import { SubDocumentPosition } from '../../sub-document'; import { ManipulatorParamsCharacterPropertiesBased } from '../utils/manipulator-params-base'; export declare class InsertTextManipulatorParams extends ManipulatorParamsCharacterPropertiesBased { text: string; runType: RunType; constructor(subDocPos: SubDocumentPosition, charPropsBundle: MaskedCharacterPropertiesBundle, runType: RunType, text: string); clone(): InsertTextManipulatorParams; } export declare class InsertLayoutDependentTextManipulatorParams extends InsertTextManipulatorParams { constructor(subDocPos: SubDocumentPosition, charPropsBundle: MaskedCharacterPropertiesBundle); }