devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 634 B
TypeScript
import { ICharacterPropertyDescriptor } from '../../../../../../../common/model/character/character-property-descriptor';
import { StrikeoutType } from '../../../../../../../common/model/character/enums';
import { XmlReader } from '../../../../zip/xml-reader';
import { CharacterFormattingLeafElementDestination } from '../character-formatting-leaf-element-destination';
export declare class DoubleStrikeThroughDestination extends CharacterFormattingLeafElementDestination<StrikeoutType> {
processElementOpen(reader: XmlReader): Promise<void>;
protected getDescriptor(): ICharacterPropertyDescriptor<StrikeoutType>;
}