GUISkin.box
var box: GUIStyle;
GUIStyle box;
box as GUIStyle
Description

Style used by default for GUI.Box controls.

	// Modifies only the box style of the current GUISkin

var style : GUIStyle;

function OnGUI() { GUI.skin.box = style; GUILayout.Box("This is a box."); }
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    public GUIStyle style;
    void OnGUI() {
        GUI.skin.box = style;
        GUILayout.Box("This is a box.");
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	public style as GUIStyle

	def OnGUI() as void:
		GUI.skin.box = style
		GUILayout.Box('This is a box.')