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) 770 B
import { SectionProperties } from '../model/section/section-properties'; import { InputPositionBase } from './input-position-base'; import { Selection } from './selection'; import { FormatterManager } from '../layout-formatter/managers/formatter-manager'; export declare class InputPosition extends InputPositionBase { private selection; private readonly formatterManager; private mergedSectionPropertiesRaw; private mergedSectionPropertiesFull; constructor(selection: Selection, formatterManager: FormatterManager); reset(): void; resetSectionMergedProperties(): void; getMergedSectionPropertiesRaw(): SectionProperties; getMergedSectionPropertiesFull(): SectionProperties; protected resetReturnValues(): void; }