devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 649 B
TypeScript
import { Table } from '../../../../../model/tables/main-structures/table';
import { TableRow } from '../../../../../model/tables/main-structures/table-row';
import { RtfTableRowProperties } from './properties/table-row-properties';
import { RtfTable } from './rtf-table';
import { RtfTableCell } from './rtf-table-cell';
export declare class RtfTableRow {
readonly cells: RtfTableCell[];
offset: number;
index: number;
defineProperties: boolean;
properties: RtfTableRowProperties;
table: RtfTable;
constructor(table: RtfTable);
get right(): number;
createTableRow(parentTable: Table): TableRow;
}