devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 441 B
JavaScript
import { ModelChangeType } from '../../enums';
export class ShapePropertyChangedSubDocumentChange {
subDocumentId;
objectId;
property;
newState;
type = ModelChangeType.ShapePropertyChanged;
constructor(subDocumentId, objectId, property, newState) {
this.subDocumentId = subDocumentId;
this.objectId = objectId;
this.property = property;
this.newState = newState;
}
}