Gets or sets the background color at the right edge of the status bar.

Syntax

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

Examples

The following example uses the GradientBackColor property and sets the background color at the right edge of the status bar to Black.

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