Limitations
Read only.
Gets the line's text.
public string Text { get; }
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);
}
Read only.