Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / CommandBarInfo Class / ButtonHighlightColor Property
Example


In This Topic
    ButtonHighlightColor Property
    In This Topic
    Gets or sets the color of the top and left borders of buttons on the command bar of the Spread component.
    Syntax
    'Declaration
     
    Public Property ButtonHighlightColor As Color
    'Usage
     
    Dim instance As CommandBarInfo
    Dim value As Color
     
    instance.ButtonHighlightColor = value
     
    value = instance.ButtonHighlightColor
    public Color ButtonHighlightColor {get; set;}

    Property Value

    Color object that contains the color for a highlighted button on the command bar
    Remarks

    Use the ButtonFaceColor and ButtonShadowColor properties to specify the button face and shadow color, respectively.

    Example
    This example shows the setting of several command bar properties.
    FpSpread1.CommandBar.Background = null;
    FpSpread1.CommandBar.BackColor = Color.Yellow; 
    FpSpread1.CommandBar.ButtonFaceColor = Color.YellowGreen; 
    FpSpread1.CommandBar.ButtonHighlightColor = Color.Coral; 
    FpSpread1.CommandBar.ButtonShadowColor = Color.Bisque; 
    FpSpread1.CommandBar.ButtonTextColor = Color.RoyalBlue; 
    FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton; 
    FpSpread1.CommandBar.Font.Bold = true; 
    FpSpread1.CommandBar.Font.Name = "Comic Sans MS"; 
    FpSpread1.CommandBar.Visible = true; 
    FpSpread1.CommandBar.Background = Nothing
    FpSpread1.CommandBar.BackColor = Color.Yellow
    FpSpread1.CommandBar.ButtonFaceColor = Color.YellowGreen
    FpSpread1.CommandBar.ButtonHighlightColor = Color.Coral
    FpSpread1.CommandBar.ButtonShadowColor = Color.Bisque
    FpSpread1.CommandBar.ButtonTextColor = Color.RoyalBlue
    FpSpread1.CommandBar.ButtonType = FarPoint.Web.Spread.ButtonType.PushButton
    FpSpread1.CommandBar.Font.Bold = True
    FpSpread1.CommandBar.Font.Name = "Comic Sans MS"
    FpSpread1.CommandBar.Visible = True 
    See Also