Spread Windows Forms 6.0 Product Documentation
Shadow Property
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > BevelBorder Class : Shadow Property


Glossary Item Box

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 BasicCopy 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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.