UNPKG

devexpress-richedit

Version:

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

18 lines (17 loc) 1.1 kB
import { TableRowAlignment } from '../../tables/secondary-structures/table-base-structures'; import { TableHeightUnit, TableWidthUnit } from '../../tables/secondary-structures/table-units'; import { ITableRowPropertyManipulator, ITableRowPropertyWithUseManipulator } from '../i-properties-manipulator'; import { ModelManipulator } from '../model-manipulator'; export declare class TableRowPropertiesManipulator { height: ITableRowPropertyManipulator<TableHeightUnit>; cellSpacing: ITableRowPropertyWithUseManipulator<TableWidthUnit>; cantSplit: ITableRowPropertyWithUseManipulator<boolean>; hideCellMark: ITableRowPropertyWithUseManipulator<boolean>; header: ITableRowPropertyWithUseManipulator<boolean>; tableRowAlignment: ITableRowPropertyWithUseManipulator<TableRowAlignment>; gridAfter: ITableRowPropertyManipulator<number>; gridBefore: ITableRowPropertyManipulator<number>; widthAfter: ITableRowPropertyManipulator<TableWidthUnit>; widthBefore: ITableRowPropertyManipulator<TableWidthUnit>; constructor(manipulator: ModelManipulator); }