Gets or sets the display color for the shadow at the left and the top edge of the pages.

Syntax

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

Examples

The following example uses the LightShadowColor property and sets its value to Yellow.

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

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

colors.DesktopColor     = System.Windows.Media.Colors.White
colors.LightShadowColor = System.Windows.Media.Colors.Yellow