On this pageWindow.isDraggablepublic bool isDraggable { get; }CopyDescription#Get if the window is draggableUsage#Exampleusing NullSave.GDTKusing UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(Window target) { bool result = target.isDraggable; } }Copy