GUISkin.box

var box : GUIStyle

Description

Style used by default for GUI.Box controls.

JavaScript
// Modifies only the box style of the current GUISkin

var style : GUIStyle;

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