Search
Window.pinned Property
See Also
 






Gets or sets a value, indicating whether this Window is pinned.

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

 Syntax

JavaScript  Copy Code

get pinned() {}

 Property Value

Boolean. true if the Window is pinned, otherwise false.

 Remarks

Pinned windows cannot be moved or resized.

 Example

The following code checks if the Window is pinned and if not - maximizes it:

JavaScript  Copy Code
if(!window.pinned)  
   window.maximize();

 See Also