Search
Window.allowDrag Property
See Also
 






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

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

 Syntax

JavaScript  Copy Code

get allowDrag() {}

 Property Value

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

 Example

The following code creates a new Window instance, sets some of its common properties and opens it:

JavaScript  Copy Code
var window = new ui.Window();
window.top = ui.Unit.percentage(25);
window.left = ui.Unit.percentage(25);
window.title = "Statistics";
window.data = chartItem.item;
window.templateUrl = "ChatWindow.html";
window.allowDrag = false;
window.open();

 See Also