devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 882 B
TypeScript
import { RtfImportData } from '../../rtf-import-data';
import { ControlCharTranslatorTable, DestinationBase } from '../base/destination';
import { StringValueDestination } from '../base/string-value-destination';
import { DestinationType } from '../utils/destination-type';
export declare class ListLevelTextDestination extends StringValueDestination {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
levelTemplateId: number;
protected createEmptyClone(): StringValueDestination;
protected createClone(): DestinationBase;
beforeNestedGroupFinished(nestedDestination: StringValueDestination): void;
static onListLevelTemplateIdKeyword(importer: RtfImportData, parameterValue: number, hasParameter: boolean): void;
static fixLevelTemplateId(levelTemplateId: number): number;
}