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