ApplicationEvents_11_Event.OptionsPagesAdd Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs whenever the user clicks the Add-in Options button on the Add-ins tab of the Outlook Options dialog box.
public:
event Microsoft::Office::Interop::Outlook::ApplicationEvents_11_OptionsPagesAddEventHandler ^ OptionsPagesAdd;
event Microsoft.Office.Interop.Outlook.ApplicationEvents_11_OptionsPagesAddEventHandler OptionsPagesAdd;
Event OptionsPagesAdd As ApplicationEvents_11_OptionsPagesAddEventHandler
Event Type
Remarks
Your program handles this event to add a custom property page. The property page will be added to the Options dialog box. When the event fires, the PropertyPages collection object identified by Pages
contains the property pages that have been added prior to the event handler being called. To add your property page to the collection, use the Add(Object, String) method of the PropertyPages collection before exiting the event handler.