lineHeight
The height of one line of text with this style, measured in pixels. (Read Only)
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public float lineHeight { get; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Prints the lineHeight value. void OnGUI() { Debug.Log(GUI.skin.button.lineHeight); }}