UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 463 B
import { ModelChangeType } from '../../enums'; export class TableStartPositionShiftedSubDocumentChange { subDocumentId; table; oldPosition; newPosition; type = ModelChangeType.TableStartPositionShifted; constructor(subDocumentId, table, oldPosition, newPosition) { this.subDocumentId = subDocumentId; this.table = table; this.oldPosition = oldPosition; this.newPosition = newPosition; } }