Gets the line's text.

Syntax

public string Text { get; }

Examples

The following example uses the Text property to get the line's text.

textControl1.Text = "Line 1\nLine 2\nLine 3"; 
foreach (TXTextControl.Line line in textControl1.Lines) 
{ 
    Console.WriteLine("Line #" + line.Number.ToString() + " starts at: " 
    + line.Start.ToString() + ". Text: " + line.Text); 
}

Limitations

Read only.