devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 585 B
TypeScript
import { RtfFieldInfo } from '../../model/fields/rtf-field-info';
import { DestinationType } from '../utils/destination-type';
import { FieldSubDestination } from './field-sub-destination';
export declare class CodeFieldDestination extends FieldSubDestination {
protected get destinationType(): DestinationType;
get currentInfo(): RtfFieldInfo;
protected createInstance(): FieldSubDestination;
protected processTextCore(text: string): void;
protected processCharCore(ch: string): void;
onDestinationClose(): void;
private getCurrentFieldType;
}