Search
Window.allowPin Property
See Also
 






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

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

 Syntax

JavaScript  Copy Code

get allowPin() {}

 Property Value

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

 Example

The following code pins a Window:

JavaScript  Copy Code
if(window.allowPin)  
   window.pin();

 See Also