OlkCommandButton.BeforeUpdate event (Outlook)
Occurs when the data in the control is changed through the user interface and is about to be saved to the item.
Syntax
expression.BeforeUpdate (Cancel)
expression A variable that represents an OlkCommandButton object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Cancel | Required | Boolean | False when the event occurs. If the event procedure sets this argument to True, the operation will not be completed and the property bound to the control will not be updated. |
Remarks
Canceling this property will revert the control to the current value of the property and return the focus to the control.
BeforeUpdate and AfterUpdate can occur any time the data in the control is being saved to the item. The typical sequence of events involving BeforeUpdate for this control is as follows:
User focuses on the control
BeforeUpdate
Control data is updated
AfterUpdate
Exit : User moves focus away from control
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.