devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 1.02 kB
TypeScript
import { TableBorders } from '../../../../../model/borders/table-borders';
import { TableProperties } from '../../../../../model/tables/properties/table-properties';
import { TableCellMargins, TableLayoutType, TableLookTypes } from '../../../../../model/tables/secondary-structures/table-base-structures';
import { TableWidthUnit } from '../../../../../model/tables/secondary-structures/table-units';
import { RtfPropertiesExporter } from '../rtf-properties-exporter';
export declare class RtfTablePropertiesExporter extends RtfPropertiesExporter {
protected writeRTLRow(): void;
writeRowLeft(left: number): void;
writeTableBorders(borders: TableBorders): void;
writeTableWidth(preferredWidth: TableWidthUnit): void;
writeTableLayout(value: TableLayoutType): void;
writeTableCellMargins(cellMargins: TableCellMargins): void;
writeTableLook(value: TableLookTypes): void;
writeTableIndent(tableIndent: TableWidthUnit): void;
writeBandSizes(info: TableProperties): void;
}