Spread Windows Forms 8.0 Product Documentation
Shadow Property
Example 


Gets the shadow color of the border.
Syntax
'Declaration
 
Public ReadOnly Property Shadow As Color
'Usage
 
Dim instance As BevelBorder
Dim value As Color
 
value = instance.Shadow
public Color Shadow {get;}

Property Value

Color object containing the border shadow color
Example
This example creates a bevel border.
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())
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

Reference

BevelBorder Class
BevelBorder Members

 

 


Copyright © GrapeCity, inc. All rights reserved.