AddIn.Startup 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 when the add-in is loaded, after all the initialization code in the assembly has run.
public:
event EventHandler ^ Startup;
event EventHandler Startup;
member this.Startup : EventHandler
Event Startup As EventHandler
Event Type
Remarks
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, see Events in Office Projects. For more information about the ThisAddIn
class, see Programming VSTO Add-Ins.