Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GUILayout.EndHorizontal

Switch to Manual
public 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 (); }