This version of Unity is unsupported.

TextMesh.lineSpacing

Switch to Manual
public float lineSpacing;

Description

How much space will be in-between lines of text.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { GetComponent<TextMesh>().lineSpacing = 10; } }