UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

13 lines (12 loc) 638 B
import { RtfTableCellProperties } from '../model/table/properties/rtf-table-cell-properties'; import { RtfTableProperties } from '../model/table/properties/rtf-table-properties'; import { RtfTableRowProperties } from '../model/table/properties/table-row-properties'; import { RtfTable } from '../model/table/rtf-table'; import { RtfTableReader } from './table-reader'; export declare class RtfTableState { table: RtfTable; tableProperties: RtfTableProperties; rowProperties: RtfTableRowProperties; cellPropertiesCollection: RtfTableCellProperties[]; constructor(table: RtfTable, reader: RtfTableReader); }