devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 562 B
JavaScript
import { ModelChangeType } from '../../enums';
export class ParagraphPropertiesChangedSubDocumentChange {
constructor(subDocumentId, paragraphIndex, paragraphInterval, properties, style, tabs, listInfo) {
this.subDocumentId = subDocumentId;
this.paragraphIndex = paragraphIndex;
this.paragraphInterval = paragraphInterval;
this.properties = properties;
this.style = style;
this.tabs = tabs;
this.listInfo = listInfo;
this.type = ModelChangeType.ParagraphPropertiesChanged;
}
}