Search
Window.allowResize Property
See Also
 






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

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

 Syntax

JavaScript  Copy Code

get allowResize() {}

 Property Value

A Boolean value. true if the Window can be resized, otherwise false.

 Example

The following code maximizes a Window:

JavaScript  Copy Code
if(window.allowResize)  
   window.maximize();

 See Also