Gets or sets the color of dark separators.

Syntax

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

Examples

The following example uses a SeparatorColorDark property and sets its value to Black.

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

rulerBarColors.SeparatorColorDark  = TXTextControl.RulerBar.Colors.Black;
Dim rulerBarColors As TXTextControl.RulerBar.Colors = New TXTextControl.RulerBar.Colors()

rulerBarColors.SeparatorColorDark = TXTextControl.RulerBar.Colors.Black
End Sub