Limitations
Runtime only.
Returns or sets the color used to display the selected text.
public Color ForeColor { get; set; }
The following example uses Fore
textControl1.Text = "TX Text Control";
TXTextControl.Selection mySel = new TXTextControl.Selection(3, 4);
mySel.Bold = true;
mySel.Italic = true;
mySel.ForeColor = System.Drawing.Color.Yellow;
textControl1.Selection = mySel;
Runtime only.
The property's default value is the system color for window text.
The property returns its default value when the text selection contains multiple characters with mixed colors. The Selection.