Limitations
Read only.
Gets the line's number. The first line has the number 1.
public int Number { get; }
The following example uses the Number property to get the line number. The first line has the number 1.
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.