UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 518 B
export class PrintLayoutViewSettings { constructor(native) { this._native = native; } get showHorizontalRuler() { return this._native.core.horizontalRulerControl.getVisible(); } set showHorizontalRuler(showHorizontalRuler) { this._native.core.innerClientProperties.viewsSettings.showHorizontalRuler = showHorizontalRuler; this._native.core.horizontalRulerControl.setVisible(showHorizontalRuler); this._native.core.owner.adjustControl(); } }