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