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