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