devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 401 B
TypeScript
import { RtfTable } from '../model/table/rtf-table';
import { RtfTableRow } from '../model/table/rtf-table-row';
import { RtfTableGrid } from './table-grid';
export declare class RtfTableColumnsCalculator {
calculate(table: RtfTable, tableIndent: number): RtfTableGrid;
merge(source: number[], destination: number[]): RtfTableGrid;
getRowColumns(row: RtfTableRow): RtfTableGrid;
}