Gets or sets the color of light separators.

Syntax

public Color SeparatorColorLight { get; set; }
Public Property SeparatorColorLight As Color

Examples

The following example uses a SeparatorColorLight property and sets its value to Yellow.

TXTextControl.RulerBar.Colors rulerBarColors = new TXTextControl.RulerBar.Colors();

rulerBarColors.SeparatorColorLight = TXTextControl.RulerBar.Colors.Yellow;
Dim rulerBarColors As TXTextControl.RulerBar.Colors = New TXTextControl.RulerBar.Colors()

rulerBarColors.SeparatorColorLight = TXTextControl.RulerBar.Colors.Yellow
End Sub