AddIn::Shutdown Event

 

Occurs when the add-in is about to be unloaded.

Namespace:   Microsoft.Office.Tools
Assembly:  Microsoft.Office.Tools.Common (in Microsoft.Office.Tools.Common.dll)

event EventHandler^ Shutdown {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

Use the default Shutdown event handler in the ThisAddIn class, instead of creating your own event handler for this event. The default Shutdown event handler is named ThisAddIn_Shutdown.

For more information, see Events in Office Projects. For more information about the ThisAddIn class, see Programming VSTO Add-Ins.

Return to top
Show: