Gets or sets a value, indicating whether this Window is pinned.
Namespace: MindFusion.Common.UI
File: Window.js
JavaScript Copy Code |
---|
get pinned() {} |
Boolean. true if the Window is pinned, otherwise false.
Pinned windows cannot be moved or resized.
The following code checks if the Window is pinned and if not - maximizes it:
JavaScript Copy Code |
---|
if(!window.pinned) window.maximize(); |
JavaScript Pack Programmer's Guide | © 2024 MindFusion |