devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 370 B
JavaScript
export class RtfTableState {
table;
tableProperties;
rowProperties;
cellPropertiesCollection;
constructor(table, reader) {
this.table = table;
this.tableProperties = reader.tableProperties;
this.rowProperties = reader.rowProperties;
this.cellPropertiesCollection = reader.cellPropertiesCollection;
}
}