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