UNPKG

devexpress-richedit

Version:

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

16 lines (15 loc) 640 B
export class LoadingPanelApi { get enabled() { return this._core.loadingPanelManager.loadingPanel.enabled; } set enabled(value) { this._core.loadingPanelManager.loadingPanel.enabled = value; } get customPanel() { return this._core.loadingPanelManager.loadingPanel.customPanel; } set customPanel(value) { this._core.loadingPanelManager.loadingPanel.customPanel = value; } constructor(core) { this._core = core; } show() { this._core.loadingPanelManager.loadingPanel.setVisible(true); } hide() { this._core.loadingPanelManager.loadingPanel.setVisible(false); } }