devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
21 lines (20 loc) • 673 B
JavaScript
import { ModelChangeType } from '../../enums';
export class ParagraphPropertiesChangedSubDocumentChange {
subDocumentId;
paragraphIndex;
paragraphInterval;
properties;
style;
tabs;
listInfo;
type = ModelChangeType.ParagraphPropertiesChanged;
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;
}
}