devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 652 B
JavaScript
import { TableCellMergingState } from '../../../../../../../../common/model/tables/secondary-structures/table-base-structures';
import { TranslationTables } from '../../../../../translation-table/translation-tables';
import { TableCellPropertiesLeafElementDestination } from './table-cell-properties-leaf-element-destination';
export class TableCellVerticalMergingStateDestination extends TableCellPropertiesLeafElementDestination {
processElementClose(reader) {
this.cell.verticalMerging = this.data.readerHelper.getWpEnumValue(reader, 'val', TranslationTables.mergingStateTable.importMap, TableCellMergingState.Continue);
}
}