UNPKG

devexpress-richedit

Version:

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

18 lines (17 loc) 1.12 kB
import { TableRowPropertiesCantSplitDescriptor, TableRowPropertiesCellSpacingDescriptor, TableRowPropertiesDivIdDescriptor, TableRowPropertiesHeaderDescriptor, TableRowPropertiesHideCellMarkDescriptor, TableRowPropertiesRowAlignmentDescriptor } from './table-row-descriptors'; export class TableRowPropertyDescriptor { static { this.cantSplit = new TableRowPropertiesCantSplitDescriptor(); } static { this.cellSpacing = new TableRowPropertiesCellSpacingDescriptor(); } static { this.divId = new TableRowPropertiesDivIdDescriptor(); } static { this.header = new TableRowPropertiesHeaderDescriptor(); } static { this.hideCellMark = new TableRowPropertiesHideCellMarkDescriptor(); } static { this.rowAlignment = new TableRowPropertiesRowAlignmentDescriptor(); } static { this.ALL_FIELDS = [ TableRowPropertyDescriptor.cantSplit, TableRowPropertyDescriptor.cellSpacing, TableRowPropertyDescriptor.divId, TableRowPropertyDescriptor.header, TableRowPropertyDescriptor.hideCellMark, TableRowPropertyDescriptor.rowAlignment, ]; } }