Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AddInBase::Startup Event

 

Occurs when the add-in is loaded, after all the initialization code in the assembly has run.

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

public:
event EventHandler^ Startup {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

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

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

Return to top
Show: