Search
Window.allowRefresh Property
See Also
 






Gets or sets a value indicating whether this Window can be refreshed.

Namespace: MindFusion.Common.UI
File: Window.js

 Syntax

JavaScript  Copy Code

get allowRefresh() {}

 Property Value

A Boolean value. true to show a refresh button, otherwise false.

 Example

The following code refreshes a Window:

JavaScript  Copy Code
if(window.allowRefresh)  
   window.refresh();

 See Also