UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 532 B
export class PrintLayoutViewSettings { _native; 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(); } }