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