devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 555 B
TypeScript
import { RtfImportData } from '../rtf-import-data';
import { CharacterDecoder } from './character-decoder';
export declare class CodePageCharacterDecoder extends CharacterDecoder {
codePage: number;
private static capacity;
private _bytes;
constructor(codePage: number);
processChar(importer: RtfImportData, ch: string): void;
protected flushByChar(importer: RtfImportData, chars: string[]): void;
protected flushByString(importer: RtfImportData, chars: string[]): void;
flush(importer: RtfImportData): void;
}