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