UNPKG

devexpress-richedit

Version:

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

20 lines (19 loc) 1.02 kB
import { AnchoredPictureRun } from '../../../../../../model/runs/anchored-picture-run'; import { AnchoredTextBoxRun } from '../../../../../../model/runs/anchored-text-box-run'; import { InlinePictureRun } from '../../../../../../model/runs/inline-picture-run'; import { RtfShapePropertiesInfo } from '../shape-properties-info'; export declare class RtfShapeImportHelper { readonly shapeProperties: RtfShapePropertiesInfo; constructor(shapeProperties: RtfShapePropertiesInfo); private setDefaults; private applyDrawingObjectRunProperties; applyAnchoredTextBoxRunProperties(run: AnchoredTextBoxRun): void; applyAnchoredPictureRunProperties(run: AnchoredPictureRun): void; applyInlinePictureRunProperties(run: InlinePictureRun): void; private applyRunProperties; private applyContainerProperties; private applyNonVisualDrawingObjectProperties; private applyNonVisualDrawingObjectPropertiesCore; private applyShapeProperties; private applyBodyProperties; }