devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 438 B
TypeScript
import { DestinationType } from '../utils/destination-type';
import { ControlCharTranslatorTable, DestinationBase } from './destination';
export declare abstract class HexContentDestination extends DestinationBase {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
val: number;
firstPosition: boolean;
protected processCharCore(ch: string): void;
}