devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 1.38 kB
TypeScript
import { DocumentModel } from '../../../../model/document-model';
import { TableCell } from '../../../../model/tables/main-structures/table-cell';
import { TableCellProperties } from '../../../../model/tables/properties/table-cell-properties';
import { TableProperties } from '../../../../model/tables/properties/table-properties';
import { ConditionalTableStyleFormatting } from '../../../../model/tables/secondary-structures/table-base-structures';
import { TableConditionalStyle } from '../../../../model/tables/styles/table-conditional-style';
import { TableStyle } from '../../../../model/tables/styles/table-style';
import { RtfTablePropertiesMergerBase } from './rtf-table-properties-merger-base';
export declare class RtfTableCellPropertiesMerger extends RtfTablePropertiesMergerBase<TableCellProperties, TableCell> {
constructor(model: DocumentModel);
get defaultProperties(): TableCellProperties;
getMergedProperties(cell: TableCell): TableCellProperties;
getStyleMergedProperties(style: TableConditionalStyle, tableStyle: TableStyle, conditionalTFormatting: ConditionalTableStyleFormatting): TableCellProperties;
protected merge(source: TableCellProperties, tableStyle: TableStyle, cell: TableCell, _tablePropertiesException: TableProperties | null, conditionalFormatting: ConditionalTableStyleFormatting): TableCellProperties;
}