UNPKG

devexpress-richedit

Version:

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

17 lines (16 loc) 541 B
import { ModelChangeType } from '../../enums'; export class TableRemovedSubDocumentChange { subDocumentId; startPosition; endPosition; nestedLevel; removedText; type = ModelChangeType.TableRemoved; constructor(subDocumentId, startPosition, endPosition, nestedLevel, removedText) { this.subDocumentId = subDocumentId; this.startPosition = startPosition; this.endPosition = endPosition; this.nestedLevel = nestedLevel; this.removedText = removedText; } }