# lineHeight

> The height of one line of text with this style, measured in pixels. (Read Only)

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.IMGUIModule

```csharp
public float lineHeight { get; }
```

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    // Prints the lineHeight value.

    void OnGUI()
    {
        Debug.Log(GUI.skin.button.lineHeight);
    }
}
```
