devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
21 lines (20 loc) • 1.4 kB
TypeScript
import { BorderInfo } from '../../borders/border-info';
import { ShadingInfo } from '../../shadings/shading-info';
import { TableCellVerticalAlignment, TextDirection } from '../../tables/secondary-structures/table-base-structures';
import { TableWidthUnit } from '../../tables/secondary-structures/table-units';
import { ITableCellComplexPropertyWithUseManipulator, ITableCellPropertyManipulator, ITableCellPropertyWithUseManipulator } from '../i-properties-manipulator';
import { ModelManipulator } from '../model-manipulator';
export declare class TableCellPropertiesManipulator {
cellMargins: ITableCellComplexPropertyWithUseManipulator<TableWidthUnit>;
borders: ITableCellComplexPropertyWithUseManipulator<BorderInfo>;
preferredWidth: ITableCellPropertyManipulator<TableWidthUnit>;
hideCellMark: ITableCellPropertyWithUseManipulator<boolean>;
noWrap: ITableCellPropertyWithUseManipulator<boolean>;
fitText: ITableCellPropertyWithUseManipulator<boolean>;
textDirection: ITableCellPropertyWithUseManipulator<TextDirection>;
verticalAlignment: ITableCellPropertyWithUseManipulator<TableCellVerticalAlignment>;
shadingInfo: ITableCellPropertyWithUseManipulator<ShadingInfo>;
columnSpan: ITableCellPropertyManipulator<number>;
verticalMerging: ITableCellPropertyManipulator<number>;
constructor(manipulator: ModelManipulator);
}