devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 980 B
TypeScript
import { TableCell } from '../../../../../../../common/model/tables/main-structures/table-cell';
import { TableCellProperties } from '../../../../../../../common/model/tables/properties/table-cell-properties';
import { TableCellMargins } from '../../../../../../../common/model/tables/secondary-structures/table-base-structures';
import { Data } from '../../../data';
import { BaseExporter } from '../../base';
export declare class TableCellPropertiesExporter extends BaseExporter {
static exportCellMargins(data: Data, tag: string, cellMargins: TableCellMargins): void;
static shouldExportCellMargins(data: Data, cellMargins: TableCellMargins): boolean;
exportTableCellProperties(cell: TableCell): void;
exportTableCellPropertiesForStyle(props: TableCellProperties): void;
private exportTableCellPropertiesCore;
private exportCoreProperties;
private exportTableCellBorders;
private hasBorders;
private exportTableCellBorder;
}