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.

GUILayout.EndVertical

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(); }