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

Introduced: X8.

Syntax

public System.Windows.Media.Color SeparatorColorLight { get; set; }

Examples

The following example uses the SeparatorColorLight property and sets the color of the light part of a separator to Yellow. The SeparatorColorLight property is only used with the VerticalColorScheme border style. Therefore initially the BorderStyle property is 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.SeparatorColorLight = System.Windows.Media.Colors.Yellow;