GUILayout.EndVertical Manual     Reference     Scripting  
Scripting > Runtime Classes > GUILayout
GUILayout.EndVertical

static function EndVertical () : void

Description

Close a group started with BeginVertical


Vertical Layout.

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