Bexel Manager API Documentation
Bexel.Api.IExternalApplication Interface Reference

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...
 

Detailed Description

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.

Member Function Documentation

◆ OnShutdown()

void Bexel.Api.IExternalApplication.OnShutdown ( IAddInContext  context)

Shuts down the external application.

Parameters
contextThe 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.

◆ OnStartup()

void Bexel.Api.IExternalApplication.OnStartup ( IAddInContext  context)

Initializes the external application.

Parameters
contextThe 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.