UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 720 B
import { ICharacterPropertyDescriptor } from '../../../../../../../common/model/character/character-property-descriptor'; import { UnderlineType } from '../../../../../../../common/model/character/enums'; import { XmlReader } from '../../../../zip/xml-reader'; import { CharacterFormattingLeafElementDestination } from '../character-formatting-leaf-element-destination'; export declare class UnderlineDestination extends CharacterFormattingLeafElementDestination<UnderlineType> { processElementOpen(reader: XmlReader): Promise<void>; protected getDescriptor(): ICharacterPropertyDescriptor<UnderlineType>; protected importUnderlineType(reader: XmlReader): void; private importUnderlineColor; }