IExplorerExtension Interface
Autodesk.Connectivity.Explorer.Extensibility›Autodesk.Connectivity.Explorer.Extensibility
Interface between Vault Explorer and command extension assemblies.
Syntax
public interface IExplorerExtension Public Interface IExplorerExtension Methods
| Name | Description |
|---|---|
| CommandSites | Extension should create and return a list of CommandSite(s) imlpemented in the extension. |
| CustomEntityHandlers | Extension should create and return a list of CustomEntityHandler(s) to override default commands for custom entity types. |
| DetailTabs | Extension should create and return a list of DetailPaneTab(s) to be display custom tabs when vault objects are selected. |
| HiddenCommands | Extension should create and return a list of ids of commands to be hidden from the user. Command ids should be from the list returned by: IApplication.CommandIds |
| OnLogOff | This function is called when the user logs off and their security context is cleared. |
| OnLogOn | This function is called when the user logs on and their security context is created. |
| OnShutdown | OnShutdown() is called as the application begins to shutdown; shortly after the user selects "File/Exit". |
| OnStartup | OnStartup() is called just before the user is given control for the first time. The "application" parameter can be used to add commands to the host application. |