Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorWindow.maximized

var maximized: bool;
bool maximized;
maximized as bool

Description

Is this window maximized.

Set this value to maximize / unmaximize a window. If the window is undocked, this value will always be false and setting it will have no effect.

class Maximizer extends EditorWindow {
	function OnGUI() {
		maximized = GUILayout.Toggle(maximized, "Maximize window");
	}
}