textArea
Style used by default for GUI.TextArea controls.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public GUIStyle textArea { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Modifies only the textArea style of the current GUISkin GUIStyle style; string str = "A string...\nWith two lines."; void OnGUI() { GUI.skin.textArea = style; str = GUILayout.TextArea(str); }}