devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 430 B
JavaScript
import { ModelChangeType } from '../../enums';
export class TablePropertyChangedSubDocumentChange {
subDocument;
property;
newState;
type = ModelChangeType.TablePropertyChanged;
get subDocumentId() { return this.subDocument.id; }
constructor(subDocument, property, newState) {
this.subDocument = subDocument;
this.property = property;
this.newState = newState;
}
}