CommandBarButton.Reset method (Office)
Resets a built-in CommandBarButton control to its original function and face.
Note
The use of CommandBars in some Microsoft Office applications has been superseded by the new ribbon component of the Microsoft Office Fluent user interface. For more information, see Overview of the Office Fluent ribbon.
Syntax
expression.Reset
expression A variable that represents a CommandBarButton object.
Remarks
Resetting a built-in control restores the actions originally intended for the control and resets each of the control's properties back to its original state.
Example
This example customizes a command bar button. First, the button properties are reset to their default state. Then various button properties are set.
Dim cbButton As CommandBarButton
Set cbButton = CommandBars("Custom").Controls(2)
cbButton.Reset
With cbButton
.BuiltInFace = True
.Caption = "Compute Total"
.DescriptionText = "This button computes the total of all purchases."
.Enabled = True
.TooltipText = "Click to compute total amount for all items in your cart."
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.