Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

GUILayout.EndVertical

Switch to Manual
public static function EndVertical(): void;

Description

Close a group started with BeginVertical.


Vertical Layout.

	function OnGUI () {	
		GUILayout.BeginVertical ("box");

GUILayout.Button ("I'm the top button"); GUILayout.Button ("I'm the bottom button"); // End the vertical group we started above GUILayout.EndVertical(); }