UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

15 lines (14 loc) 950 B
import { RtfShapePropertiesInfo } from '../../model/shape/shape-properties-info'; import { RtfImportData } from '../../rtf-import-data'; import { ControlCharTranslatorTable } from '../base/destination'; import { DestinationType } from '../utils/destination-type'; import { ShapePropertiesDestinationBase } from './shape-properties-destination-base'; export declare abstract class ShapeDestinationBase extends ShapePropertiesDestinationBase { protected get destinationType(): DestinationType; protected get controlCharHT(): ControlCharTranslatorTable; constructor(importer: RtfImportData, shapeProperties: RtfShapePropertiesInfo); static getThis(rtfImporter: RtfImportData): ShapeDestinationBase; static onShapeInstanceKeyword(importer: RtfImportData, _parameterValue: number, _hasParameter: boolean): void; protected processControlCharCore(_ch: string): void; protected processCharCore(_ch: string): void; }