Gets or sets the background color at the right edge of the status bar.
public System.Windows.Media.Color GradientBackColor { get; set; }
Public Property GradientBackColor As System.Windows.Media.Color
The following example uses the Gradient
TXTextControl.WPF.StatusBarColors colors = new TXTextControl.WPF.StatusBarColors();
colors.BorderStyle = TXTextControl.StatusBarBorderStyle.ColorScheme;
colors.ForeColor = System.Windows.Media.Colors.White;
colors.GradientBackColor = 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.GradientBackColor = System.Windows.Media.Color.Black