Limitations
Runtime only.
Gets or sets the starting point of selected text. The first possible position is 0. If the starting point of a selection is set to a new value, the selection's current length remains the same. To set a new starting point and a length simultaneously, use either the Text
public int Start { get; set; }
The following example uses Start property to set the starting point of the selected text "TX Text Control". The first possible position is 0.
textControl1.Text = "TX Text Control";
TXTextControl.Selection mySel = new TXTextControl.Selection(3, 4);
mySel.Start = 0;
mySel.Bold = true;
mySel.Italic = true;
textControl1.Selection = mySel;
Runtime only.