devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 583 B
TypeScript
import { ControlCharTranslatorTable, DestinationBase } from '../base/destination';
import { DestinationType } from '../utils/destination-type';
export declare class ShapePropertyValueDestination extends DestinationBase {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
buffer: string[];
value: any;
protected processCharCore(ch: string): void;
beforePopRtfState(): void;
nestedGroupFinished(nestedDestination: DestinationBase): void;
protected createClone(): DestinationBase;
}