TextMeshPro.lineSpacing

float lineSpacing;

Description

The amount of additional spacing to be added between each lines of text.


using UnityEngine;
using System.Collections;
using TMPro;

public class ExampleClass : MonoBehaviour
{
    void Awake()
    {
        TextMeshPro textmeshPro = GetComponent<TextMeshPro>();
        textmeshPro.lineSpacing = 178.25f;
    }    
}