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 { ColorModelInfo } from '../../../../../../model/color/color-model-info'; import { ShadingPattern } from '../../../../../../model/shadings/shading-pattern'; import { TableCell } from '../../../../../../model/tables/main-structures/table-cell'; import { TableCellProperties } from '../../../../../../model/tables/properties/table-cell-properties'; import { TableCellMergingState } from '../../../../../../model/tables/secondary-structures/table-base-structures'; import { TableWidthUnit } from '../../../../../../model/tables/secondary-structures/table-units'; export declare class RtfTableCellProperties { coreProperties: TableCellProperties; right: number; horizontalMerging: TableCellMergingState; shadingPattern: ShadingPattern; foreColor: ColorModelInfo; backColor: ColorModelInfo; verticalMerging: TableCellMergingState; preferredWidth: TableWidthUnit; constructor(); copyFrom(obj: RtfTableCellProperties): void; apply(cell: TableCell): void; }