Gets or sets a value, indicating whether this Window is pinned.
Namespace: MindFusion.Common.UI
File: Window.js
SyntaxJavaScript
Copy Code
|
|---|
get pinned() {} |
Boolean. true if the Window is pinned, otherwise false.
RemarksPinned windows cannot be moved or resized.
ExampleThe following code checks if the Window is pinned and if not - maximizes it:
JavaScript
Copy Code
|
|---|
| if(!window.pinned) window.maximize(); |
See Also