Gets or sets the background color in the middle of the status bar. This color is only used with the VerticalColorScheme border style.

Introduced: X8.

Syntax

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

Examples

The following example uses the BackColorMiddle property and sets its value to White. The BackColorMiddle property is only used with the VerticalColorScheme border style. Therefore the BorderStyle property is initially set to value VerticalColorScheme.

TXTextControl.WPF.StatusBarColors colors = new TXTextControl.WPF.StatusBarColors();

colors.BorderStyle     = TXTextControl.StatusBarBorderStyle.VerticalColorScheme;
colors.BackColorMiddle = System.Windows.Media.Colors.White;
Dim colors As TXTextControl.WPF.StatusBarColors = New TXTextControl.WPF.StatusBarColors()

colors.BorderStyle     = TXTextControl.StatusBarBorderStyle.VerticalColorScheme
colors.BackColorMiddle = System.Windows.Media.Colors.White