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

Namespace: UnityEngine

Description

The GUILayout class is the interface for Unity gui with automatic layout.

Static Functions

BeginAreaBegin a GUILayout block of GUI controls in a fixed screen area.
BeginHorizontalBegin a Horizontal control group.
BeginScrollViewBegin an automatically laid out scrollview.
BeginVerticalBegin a vertical control group.
BoxMake an auto-layout box.
ButtonMake a single press button. The user clicks them and something happens immediately.
EndAreaClose a GUILayout block started with BeginArea.
EndHorizontalClose a group started with BeginHorizontal.
EndScrollViewEnd a scroll view begun with a call to BeginScrollView.
EndVerticalClose a group started with BeginVertical.
ExpandHeightOption passed to a control to allow or disallow vertical expansion.
ExpandWidthOption passed to a control to allow or disallow horizontal expansion.
FlexibleSpaceInsert a flexible space element.
HeightOption passed to a control to give it an absolute height.
HorizontalScrollbarMake a horiztonal scrollbar.
HorizontalSliderA horizontal slider the user can drag to change a value between a min and a max.
LabelMake an auto-layout label.
MaxHeightOption passed to a control to specify a maximum height.
MaxWidthOption passed to a control to specify a maximum width.
MinHeightOption passed to a control to specify a minimum height.
MinWidthOption passed to a control to specify a minimum width.
PasswordFieldMake a text field where the user can enter a password.
RepeatButtonMake a repeating button. The button returns true as long as the user holds down the mouse.
SelectionGridMake a Selection Grid.
SpaceInsert a space in the current layout group.
TextAreaMake a multi-line text field where the user can edit a string.
TextFieldMake a single-line text field where the user can edit a string.
ToggleMake an on/off toggle button.
ToolbarMake a toolbar.
VerticalScrollbarMake a vertical scrollbar.
VerticalSliderA vertical slider the user can drag to change a value between a min and a max.
WidthOption passed to a control to give it an absolute width.
WindowMake a popup window that layouts its contents automatically.