UNPKG

devexpress-richedit

Version:

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

12 lines (11 loc) 460 B
import { ModelChangeType } from '../../enums'; export class TableCellSplittedHorizontallySubDocumentChange { constructor(subDocumentId, table, rowIndex, cellIndex, rightDirection) { this.subDocumentId = subDocumentId; this.table = table; this.rowIndex = rowIndex; this.cellIndex = cellIndex; this.rightDirection = rightDirection; this.type = ModelChangeType.TableCellSplittedHorizontally; } }