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