Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


VerticalScope

Create a new VerticalScope and begin the corresponding vertical group.
Read time 4 minutesLast updated 7 days ago

Definition

  • Type: Constructor
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule

VerticalScope(GUILayoutOption[])

Create a new VerticalScope and begin the corresponding vertical group.
public VerticalScope(params GUILayoutOption[] options)

Parameters

An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the
style
.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

VerticalScope(GUIStyle, GUILayoutOption[])

Create a new VerticalScope and begin the corresponding vertical group.
public VerticalScope(GUIStyle style, params GUILayoutOption[] options)

Parameters

The style to use for background image and padding values. If left out, the background is transparent.

An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the
style
.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

VerticalScope(string, GUIStyle, GUILayoutOption[])

Create a new VerticalScope and begin the corresponding vertical group.
public VerticalScope(string text, GUIStyle style, params GUILayoutOption[] options)

Parameters

text

Text to display on group.

The style to use for background image and padding values. If left out, the background is transparent.

An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the
style
.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

VerticalScope(Texture, GUIStyle, GUILayoutOption[])

Create a new VerticalScope and begin the corresponding vertical group.
public VerticalScope(Texture image, GUIStyle style, params GUILayoutOption[] options)

Parameters

image

Texture to display on group.

The style to use for background image and padding values. If left out, the background is transparent.

An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the
style
.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

VerticalScope(GUIContent, GUIStyle, GUILayoutOption[])

Create a new VerticalScope and begin the corresponding vertical group.
public VerticalScope(GUIContent content, GUIStyle style, params GUILayoutOption[] options)

Parameters

content

Text, image, and tooltip for this group.

The style to use for background image and padding values. If left out, the background is transparent.

An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the
style
.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.