GUILayout.EndHorizontal
static function EndHorizontal(): void;
Description

Close a group started with BeginHorizontal.


Horizontal Layout.
	function OnGUI () {	
		GUILayout.BeginHorizontal ("box");

GUILayout.Button ("I'm the first button"); GUILayout.Button ("I'm to the right"); // End the horizontal group we began above GUILayout.EndHorizontal (); }