GUI.Box Manual     Reference     Scripting  
Scripting > Runtime Classes > GUI
GUI.Box

static function Box (position : Rect, text : String) : void

static function Box (position : Rect, image : Texture) : void

static function Box (position : Rect, content : GUIContent) : void

static function Box (position : Rect, text : String, style : GUIStyle) : void

static function Box (position : Rect, image : Texture, style : GUIStyle) : void

static function Box (position : Rect, content : GUIContent, style : GUIStyle) : void

Parameters

NameDescription
position Rectangle on the screen to use for the box.
text Text to display on the box.
image Texture to display on the box.
content Text, image and tooltip for this box.
style The style to use. If left out, the box style from the current GUISkin is used.

Description

Make a graphical box.

JavaScript
// Draws a box of the size of the screen.
function OnGUI() {
GUI.Box(Rect(0,0,Screen.width,Screen.height),"This is a title");
}

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void OnGUI() {
GUI.Box(new Rect(0, 0, Screen.width, Screen.height), "This is a title");
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def OnGUI():
GUI.Box(Rect(0, 0, Screen.width, Screen.height), 'This is a title')