devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 827 B
TypeScript
import { CharacterDecoder } from '../../encoding/character-decoder';
import { RtfImportData } from '../../rtf-import-data';
import { DestinationType } from '../utils/destination-type';
import { ControlCharTranslatorTable, DestinationBase } from './destination';
export declare class SkipDestination extends DestinationBase {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
oldDecoder: CharacterDecoder;
constructor(importer?: RtfImportData);
beforePopRtfState(): void;
protected processControlCharCore(_ch: string): void;
protected processKeywordCore(keyword: string, parameterValue: number, hasParameter: boolean): boolean;
protected processCharCore(_ch: string): void;
protected createClone(): DestinationBase;
}