Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

GUILayout.AreaScope.GUILayout.AreaScope

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public GUILayout.AreaScope(screenRect: Rect)
public GUILayout.AreaScope(Rect screenRect);
public GUILayout.AreaScope(screenRect: Rect, text: string)
public GUILayout.AreaScope(Rect screenRect, string text);
public GUILayout.AreaScope(screenRect: Rect, image: Texture)
public GUILayout.AreaScope(Rect screenRect, Texture image);
public GUILayout.AreaScope(screenRect: Rect, content: GUIContent)
public GUILayout.AreaScope(Rect screenRect, GUIContent content);
public GUILayout.AreaScope(screenRect: Rect, text: string, style: GUIStyle)
public GUILayout.AreaScope(Rect screenRect, string text, GUIStyle style);
public GUILayout.AreaScope(screenRect: Rect, image: Texture, style: GUIStyle)
public GUILayout.AreaScope(Rect screenRect, Texture image, GUIStyle style);
public GUILayout.AreaScope(screenRect: Rect, content: GUIContent, style: GUIStyle)
public GUILayout.AreaScope(Rect screenRect, GUIContent content, GUIStyle style);

Parameters

textOptional text to display in the area.
imageOptional texture to display in the area.
contentOptional text, image and tooltip top display for this area.
styleThe style to use. If left out, the empty GUIStyle (GUIStyle.none) is used, giving a transparent background.

Description

Create a new AreaScope and begin the corresponding Area.