devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
26 lines (25 loc) • 1.16 kB
TypeScript
import { ColorModelInfo } from '../../../../../../model/color/color-model-info';
import { ShadingPattern } from '../../../../../../model/shadings/shading-pattern';
import { TableRow } from '../../../../../../model/tables/main-structures/table-row';
import { TableRowProperties } from '../../../../../../model/tables/properties/table-row-properties';
import { TableHeightUnit, TableWidthUnit } from '../../../../../../model/tables/secondary-structures/table-units';
import { TableFloatingPositionInfo } from './table-floating-position-info';
export declare class RtfTableRowProperties {
coreProperties: TableRowProperties;
left: number;
foreColorIndex: number;
backColorIndex: number;
readonly cellSpacing: TableWidthUnit;
floatingPosition: TableFloatingPositionInfo;
shadingPattern: ShadingPattern;
foreColor: ColorModelInfo;
backColor: ColorModelInfo;
widthBefore: TableWidthUnit;
widthAfter: TableWidthUnit;
gridBefore: number;
gridAfter: number;
height: TableHeightUnit;
constructor();
copyFrom(obj: RtfTableRowProperties): void;
apply(row: TableRow): void;
}