devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 615 B
TypeScript
import { RtfShapePropertiesInfo } from '../../model/shape/shape-properties-info';
import { RtfImportData } from '../../rtf-import-data';
import { DestinationBase } from '../base/destination';
import { DestinationType } from '../utils/destination-type';
import { ShapeDestinationBase } from './shape-destination-base';
export declare class ShapeDestination extends ShapeDestinationBase {
protected get destinationType(): DestinationType;
constructor(importer: RtfImportData, shapeProperties?: RtfShapePropertiesInfo);
protected createClone(): DestinationBase;
beforePopRtfState(): void;
}