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