Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

GUILayoutUtility.GetRect

public static Rect GetRect(GUIContent content, GUIStyle style);
public static Rect GetRect(GUIContent content, GUIStyle style, params GUILayoutOption[] options);

Parameters

contentThe content to make room for displaying.
styleThe GUIStyle to layout for.
optionsAn optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Returns

Rect A rectangle that is large enough to contain content when rendered in style.

Description

Reserve layout space for a rectangle for displaying some contents with a specific style.

no example available in C#

public static Rect GetRect(float width, float height);
public static Rect GetRect(float width, float height, GUIStyle style);
public static Rect GetRect(float width, float height, params GUILayoutOption[] options);
public static Rect GetRect(float width, float height, GUIStyle style, params GUILayoutOption[] options);

Parameters

widthThe width of the area you want.
heightThe height of the area you want.
styleAn optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes & its margin value will be used for spacing.
optionsAn optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Returns

Rect The rectanlge to put your control in.

Description

Reserve layout space for a rectangle with a fixed content area.


public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight);
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, GUIStyle style);
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, params GUILayoutOption[] options);
public static Rect GetRect(float minWidth, float maxWidth, float minHeight, float maxHeight, GUIStyle style, params GUILayoutOption[] options);

Parameters

minWidthThe minimum width of the area passed back.
maxWidthThe maximum width of the area passed back.
minHeightThe minimum width of the area passed back.
maxHeightThe maximum width of the area passed back.
styleAn optional style. If specified, the style's padding value will be added to the sizes requested & the style's margin values will be used for spacing.
optionsAn optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Returns

Rect A rectangle with size between minWidth & maxWidth on both axes.

Description

Reserve layout space for a flexible rect.

The rectangle's size will be between the min & max values.

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