Gets or sets the color of the dark part of a separator. This color is only used with the VerticalColorScheme border style.

Introduced: X8.

Syntax

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

Examples

The following example uses the SeparatorColorDark property and sets the color of the dark part of a separator to Black. The SeparatorColorDark 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.ForeColor   = System.Windows.Media.Colors.White;
colors.SeparatorColorDark = 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.Colors.White
colors.SeparatorColorDark = System.Windows.Media.Colors.Black