Gets or sets the color used for the numbers of the ruler.
public Color ForeColor { get; set; }
Public Property ForeColor As Color
The following example uses a Fore
TXTextControl.RulerBar.Colors rulerBarColors = new TXTextControl.RulerBar.Colors();
rulerBarColors.BackColor = TXTextControl.RulerBar.Colors.White;
rulerBarColors.ForeColor = TXTextControl.RulerBar.Colors.Yellow;
Dim rulerBarColors As TXTextControl.RulerBar.Colors = New TXTextControl.RulerBar.Colors()
rulerBarColors.BackColor = TXTextControl.RulerBar.Colors.White
rulerBarColors.ForeColor = TXTextControl.RulerBar.Colors.Yellow
End Sub