Spread Windows Forms 12.0 Product Documentation
Highlight Property
Example 


FarPoint.Win Assembly > FarPoint.Win Namespace > BevelBorder Class : Highlight Property
Gets the highlight color of the border.
Syntax
'Declaration
 
Public ReadOnly Property Highlight As Color
'Usage
 
Dim instance As BevelBorder
Dim value As Color
 
value = instance.Highlight
public Color Highlight {get;}

Property Value

Color object containing the border highlight 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() + ".")
See Also

Reference

BevelBorder Class
BevelBorder Members