Gets the shadow color of the border.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Shadow As Color |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As BevelBorder
Dim value As Color
value = instance.Shadow |
C# | |
---|
public Color Shadow {get;} |
Property Value
Color object containing the border shadow color
Example
This example creates a bevel border.
C# | Copy Code |
---|
FarPoint.Win.BevelBorder bevel = new FarPoint.Win.BevelBorder(BevelBorderType.Lowered, Color.Blue, Color.LightBlue, (int)1.5, true, false, true, false);
Color h = bevel.Highlight;
Color s = bevel.Shadow;
MessageBox.Show("The highlight color is " + h.ToKnownColor().ToString() + " and the shadow color is " + s.ToKnownColor().ToString()) |
Visual Basic | Copy Code |
---|
Dim bevel As New FarPoint.Win.BevelBorder(BevelBorderType.Lowered, Color.Blue, Color.LightBlue, 1.5, True, False, True, False)
Dim h As Color = bevel.Highlight
Dim s As Color = bevel.Shadow
MessageBox.Show("The highlight color is " + h.ToKnownColor().ToString() + " and the shadow color is " + s.ToKnownColor().ToString()) |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also