Gets or sets the color used for text and numbers.
public System.Windows.Media.Color ForeColor { get; set; }
Public Property ForeColor As System.Windows.Media.Color
The following example uses the Fore
TXTextControl.WPF.StatusBarColors colors = new TXTextControl.WPF.StatusBarColors();
colors.BorderStyle = TXTextControl.StatusBarBorderStyle.ColorScheme;
colors.ForeColor = System.Windows.Media.Colors.White;
colors.FrameColor = System.Windows.Media.Colors.Black;
Dim colors As TXTextControl.WPF.StatusBarColors = New TXTextControl.WPF.StatusBarColors()
colors.BorderStyle = TXTextControl.StatusBarBorderStyle.ColorScheme
colors.ForeColor = System.Windows.Media.Color.White
colors.FrameColor = System.Windows.Media.Color.Black