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.

GUILayout.EndVertical

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