devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 520 B
JavaScript
import { TableCellPropertyDescriptor } from '../../../../../../../../common/model/tables/properties/table-cell-properties';
import { TableCellPropertiesLeafElementDestination } from './table-cell-properties-leaf-element-destination';
export class TableCellHideMarkDestination extends TableCellPropertiesLeafElementDestination {
async processElementOpen(reader) {
this.cell.properties.setValue(TableCellPropertyDescriptor.hideCellMark, this.data.readerHelper.getWpSTOnOffValue(reader, 'val'));
}
}