Gets or sets the color used for text and numbers.

Syntax

public System.Windows.Media.Color ForeColor { get; set; }
Public Property ForeColor As System.Windows.Media.Color

Examples

The following example uses the ForeColor property and sets its value to White.

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