devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 778 B
TypeScript
import { TextBoxProperties } from '../../../../../../model/floating-objects/text-box-properties';
import { RtfShapePropertiesInfo } from '../shape-properties-info';
export declare class RtfDrawingTextBodyPropertiesHelper {
readonly shapePropertiesInfo: RtfShapePropertiesInfo;
constructor(shapePropertiesInfo: RtfShapePropertiesInfo);
applyProperties(properties: TextBoxProperties): void;
processInsetLeft(properties: TextBoxProperties): void;
processInsertRight(properties: TextBoxProperties): void;
processInsertTop(properties: TextBoxProperties): void;
processInsetBottom(properties: TextBoxProperties): void;
processFitShapeToText(properties: TextBoxProperties): void;
processWrapText(properties: TextBoxProperties): void;
}