Gets the highlight color of the border.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Highlight As Color |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As BevelBorder
Dim value As Color
value = instance.Highlight |
C# | |
---|
public Color Highlight {get;} |
Property Value
Color object containing the border highlight 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 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