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) 770 B
import { TableRowAlignment } from '../../model/tables/secondary-structures/table-base-structures'; import { TableHeightUnit, TableHeightUnitType } from '../../model/tables/secondary-structures/table-units'; export declare class TopAndBottomMarginsForRow { topMargin: number; bottomMargin: number; addCellTopMargin(topMargin: number): void; addCellBottomMargin(bottomMargin: number): void; sumOfBoth(): number; } export declare class TableRowHeightInfo { horizontalAlignment: TableRowAlignment; preferredHeightValue: number; preferredHeightType: TableHeightUnitType; contentHeight: number; cantSplit: boolean; constructor(cantSplit: boolean, height: TableHeightUnit, horizontalAlignment: TableRowAlignment); }