devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 737 B
TypeScript
import { RtfImportData } from '../../rtf-import-data';
import { DestinationType } from '../utils/destination-type';
import { ControlCharTranslatorTable, DestinationBase } from './destination';
export declare class StringPropertyBaseDestination extends DestinationBase {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
static controlCharHT: ControlCharTranslatorTable;
readonly value: string[];
readonly modifier: (value: string) => void;
constructor(importer: RtfImportData, modifier: (value: string) => void);
protected processCharCore(ch: string): void;
afterPopRtfState(): void;
protected createClone(): DestinationBase;
}