Gets or sets the color of the dark part of a separator. This color is only used with the Vertical
Introduced: X8.
public System.Windows.Media.Color SeparatorColorDark { get; set; }
Public Property SeparatorColorDark As System.Windows.Media.Color
The following example uses the Separator
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