Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


box

Style used by default for GUI.Box controls.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public GUIStyle box { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Modifies only the box style of the current GUISkin GUIStyle style; void OnGUI() { GUI.skin.box = style; GUILayout.Box("This is a box."); }}