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.06 kB
import { TableRowPropertiesCantSplitDescriptor, TableRowPropertiesCellSpacingDescriptor, TableRowPropertiesDivIdDescriptor, TableRowPropertiesHeaderDescriptor, TableRowPropertiesHideCellMarkDescriptor, TableRowPropertiesRowAlignmentDescriptor } from './table-row-descriptors'; export class TableRowPropertyDescriptor { static cantSplit = new TableRowPropertiesCantSplitDescriptor(); static cellSpacing = new TableRowPropertiesCellSpacingDescriptor(); static divId = new TableRowPropertiesDivIdDescriptor(); static header = new TableRowPropertiesHeaderDescriptor(); static hideCellMark = new TableRowPropertiesHideCellMarkDescriptor(); static rowAlignment = new TableRowPropertiesRowAlignmentDescriptor(); static ALL_FIELDS = [ TableRowPropertyDescriptor.cantSplit, TableRowPropertyDescriptor.cellSpacing, TableRowPropertyDescriptor.divId, TableRowPropertyDescriptor.header, TableRowPropertyDescriptor.hideCellMark, TableRowPropertyDescriptor.rowAlignment, ]; }