devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 967 B
TypeScript
import { ShadingInfo } from '../../../../../model/shadings/shading-info';
import { TableRowAlignment } from '../../../../../model/tables/secondary-structures/table-base-structures';
import { TableHeightUnit, TableWidthUnit } from '../../../../../model/tables/secondary-structures/table-units';
import { RtfPropertiesExporter } from '../rtf-properties-exporter';
export declare class RtfTableRowPropertiesExporter extends RtfPropertiesExporter {
writeLastRowMark(): void;
writeHalfSpaceBetweenCells(val: number): void;
writeRowAlignment(value: TableRowAlignment): void;
writeRowHeader(header: boolean): void;
writeRowCantSplit(cantSplit: boolean): void;
writeRowHeight(height: TableHeightUnit): void;
writeWidthBefore(widthBefore: TableWidthUnit): void;
writeWidthAfter(widthAfter: TableWidthUnit): void;
writeRowCellSpacing(cellSpacing: TableWidthUnit): void;
writeRowShading(shadingInfo: ShadingInfo): void;
}