Gets or sets the display color for the shadow at the right and the bottom edge of the pages.

Syntax

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

Examples

The following example uses the DarkShadowColor property and sets its value to Black.

TXTextControl.WPF.TextControlColors colors = new TXTextControl.WPF.TextControlColors();

colors.DesktopColor    = System.Windows.Media.Colors.White;
colors.DarkShadowColor = System.Windows.Media.Colors.Black;
Dim colors As TXTextControl.WPF.TextControlColors = New TXTextControl.WPF.TextControlColors()

colors.DesktopColor    = System.Windows.Media.Colors.White
colors.DarkShadowColor = System.Windows.Media.Colors.Black