Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

EditorGUILayout.EndVertical

public static function EndVertical(): void;

Description

Close a group started with BeginVertical.

See Also: EditorGUILayout.BeginVertical


Vertical Compound group.

	// Create a Vertical Compound Button 
	
	class BeginEndVerticalExample extends EditorWindow {
	
		@MenuItem("Examples/Begin-End Vertical usage")
		static function Init() {
			var window = GetWindow(BeginEndVerticalExample);
			window.Show();
		}
		
		function OnGUI() {
			var r : Rect = EditorGUILayout.BeginVertical("Button");
				if (GUI.Button(r, GUIContent.none))
					Debug.Log("Go here");
				GUILayout.Label("I'm inside the button");
				GUILayout.Label("So am I");	
			EditorGUILayout.EndVertical();
		}
	}