devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 402 B
JavaScript
import { ViewSettings } from '../view-settings/views-settings';
export class InnerClientProperties {
viewsSettings;
showHiddenSymbols;
showTableGridLines;
constructor(viewsSettings) {
this.showHiddenSymbols = false;
this.showTableGridLines = false;
this.viewsSettings = new ViewSettings();
this.viewsSettings.copyFrom(viewsSettings);
}
}