devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 409 B
TypeScript
import { CellGridInfo } from '../../../model/tables/grid/table-cell-grid-info';
import { Table } from '../../../model/tables/main-structures/table';
import { Columns } from './columns';
export declare class Grid {
table: Table;
columns: Columns;
tableCellGridInfos: CellGridInfo[][];
tableCellInfos: CellGridInfo[][];
constructor(table: Table);
get commonWidth(): number;
}