Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

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

GUILayout.ExpandWidth

public static method ExpandWidth(expand: bool): GUILayoutOption;

Description

Option passed to a control to allow or disallow horizontal expansion.

If this is true, the enclosed UI elements can expand to fill the available horizontal width.

.

#pragma strict
function OnGUI() {
	GUILayout.BeginVertical();
	GUILayout.Button("Short Button", GUILayout.ExpandWidth(false));
	GUILayout.Button("Very very long Button");
	GUILayout.EndVertical();
}

Did you find this page useful? Please give it a rating: