Bexel Manager API Documentation
|
Represents the external application add-in. More...
Public Member Functions | |
void | OnStartup (IAddInContext context) |
Initializes the external application. More... | |
void | OnShutdown (IAddInContext context) |
Shuts down the external application. More... | |
Represents the external application add-in.
External application add-ins are able to register a dedicated tab, group or button in the host application UI.
void Bexel.Api.IExternalApplication.OnShutdown | ( | IAddInContext | context | ) |
Shuts down the external application.
context | The add-in context. |
This method is called automatically when host application is shutting down. Implementers should use this method to properly shutdown and cleanup after the external application.
void Bexel.Api.IExternalApplication.OnStartup | ( | IAddInContext | context | ) |
Initializes the external application.
context | The add-in context. |
This method is called automatically when the host application is starting up, usually after UI initialization. Implementers should use this method to register the external application within the host application UI.