|
Bexel Manager API Documentation
|
Represents the UI part of the host application. More...
Public Member Functions | |
| IRibbonTab | CreateRibbonTab (string tabName) |
| Creates a ribbon tab with the specified name in the host application UI. More... | |
| IRibbonTab | GetOrCreateRibbonTab (string tabName) |
| Retrieves a ribbon tab with the specified name from the host application UI. If no such tab exists a new one is created. More... | |
| IRibbonGroup | CreateRibbonGroup (string tabName, string groupName) |
| Creates a ribbon group with the specified name in the host application UI within the specified tab. More... | |
| IRibbonGroup | CreateRibbonGroup (IRibbonTab tab, string groupName) |
| Creates a ribbon group with the specified name in the host application UI within the specified tab. More... | |
| IRibbonGroup | CreateRibbonGroup (string groupName) |
| Creates a ribbon group with the specified name in the host application UI within predefined Add-ins tab. More... | |
| IRibbonGroup | GetOrCreateRibbonGroup (string tabName, string groupName) |
| Retrieves a ribbon group with the specified name from the host application UI within the specified tab. If no such group exists a new one is created. More... | |
| IRibbonGroup | GetOrCreateRibbonGroup (IRibbonTab tab, string groupName) |
| Retrieves a ribbon group with the specified name from the host application UI within the specified tab. If no such group exists a new one is created. More... | |
| IRibbonGroup | GetOrCreateRibbonGroup (string groupName) |
| Retrieves a ribbon group with the specified name from the host application UI within predefined Add-ins tab. If no such group exists a new one is created. More... | |
| IRibbonButton | CreateRibbonButton (string tabName, string groupName, string buttonName) |
| Creates a ribbon button with the specified name from the host application UI within the specified tab and group. More... | |
| IRibbonButton | CreateRibbonButton (IRibbonTab tab, string groupName, string buttonName) |
| Creates a ribbon button with the specified name from the host application UI within the specified tab and group. More... | |
| IRibbonButton | CreateRibbonButton (IRibbonGroup group, string buttonName) |
| Creates a ribbon button with the specified name in the host application UI within predefined Add-ins tab and the specified group. More... | |
| IRibbonButton | GetOrCreateRibbonButton (string tabName, string groupName, string buttonName) |
| Retrieves a ribbon button with the specified name from the host application UI within the specified tab and group. If no such button exists a new one is created. More... | |
| IRibbonButton | GetOrCreateRibbonButton (string groupName, string buttonName) |
| Retrieves a ribbon button with the specified name from the host application UI within predefined Add-ins tab and the specified group. If no such button exists a new one is created. More... | |
| IRibbonButton | GetOrCreateRibbonButton (IRibbonGroup group, string buttonName) |
| Retrieves a ribbon button with the specified name from the host application UI within predefined Add-ins tab and the specified group. If no such button exists a new one is created. More... | |
Properties | |
| IUIApplicationDockableControls | DockableControls [get] |
| Contains logic for embedding add-in user interface controls within the host application user interface layout. More... | |
Represents the UI part of the host application.
| IRibbonButton Bexel.Api.IUIApplication.CreateRibbonButton | ( | string | tabName, |
| string | groupName, | ||
| string | buttonName | ||
| ) |
Creates a ribbon button with the specified name from the host application UI within the specified tab and group.
| tabName | The name of the ribbon tab. |
| groupName | The name of the ribbon group. |
| buttonName | The name of the ribbon button |
| System.NotSupportedException | If any of the predefined tabs are specified. |
| IRibbonButton Bexel.Api.IUIApplication.CreateRibbonButton | ( | IRibbonTab | tab, |
| string | groupName, | ||
| string | buttonName | ||
| ) |
Creates a ribbon button with the specified name from the host application UI within the specified tab and group.
| tab | The reference to the ribbon tab. |
| groupName | The name of the ribbon group. |
| buttonName | The name of the ribbon button |
| IRibbonButton Bexel.Api.IUIApplication.CreateRibbonButton | ( | IRibbonGroup | group, |
| string | buttonName | ||
| ) |
Creates a ribbon button with the specified name in the host application UI within predefined Add-ins tab and the specified group.
| group | The reference to the ribbon group. |
| buttonName | The name of the ribbon button |
| IRibbonGroup Bexel.Api.IUIApplication.CreateRibbonGroup | ( | string | tabName, |
| string | groupName | ||
| ) |
Creates a ribbon group with the specified name in the host application UI within the specified tab.
| tabName | The name of the ribbon tab. |
| groupName | The name of the ribbon group. |
| System.NotSupportedException | If any of the predefined tabs are specified. |
| IRibbonGroup Bexel.Api.IUIApplication.CreateRibbonGroup | ( | IRibbonTab | tab, |
| string | groupName | ||
| ) |
Creates a ribbon group with the specified name in the host application UI within the specified tab.
| tab | The reference to the ribbon tab. |
| groupName | The name of the ribbon group. |
| IRibbonGroup Bexel.Api.IUIApplication.CreateRibbonGroup | ( | string | groupName | ) |
Creates a ribbon group with the specified name in the host application UI within predefined Add-ins tab.
| groupName | The name of the ribbon group. |
| IRibbonTab Bexel.Api.IUIApplication.CreateRibbonTab | ( | string | tabName | ) |
Creates a ribbon tab with the specified name in the host application UI.
| tabName | The name of the ribbon tab to be created. |
| System.NotSupportedException | Tab with the specified name already exists. |
| IRibbonButton Bexel.Api.IUIApplication.GetOrCreateRibbonButton | ( | string | tabName, |
| string | groupName, | ||
| string | buttonName | ||
| ) |
Retrieves a ribbon button with the specified name from the host application UI within the specified tab and group. If no such button exists a new one is created.
| tabName | The name of the ribbon tab. |
| groupName | The name of the ribbon group. |
| buttonName | The name of the ribbon button |
| System.NotSupportedException | If any of the predefined tabs are specified. |
| IRibbonButton Bexel.Api.IUIApplication.GetOrCreateRibbonButton | ( | string | groupName, |
| string | buttonName | ||
| ) |
Retrieves a ribbon button with the specified name from the host application UI within predefined Add-ins tab and the specified group. If no such button exists a new one is created.
| groupName | The name of the ribbon group. |
| buttonName | The name of the ribbon button |
| IRibbonButton Bexel.Api.IUIApplication.GetOrCreateRibbonButton | ( | IRibbonGroup | group, |
| string | buttonName | ||
| ) |
Retrieves a ribbon button with the specified name from the host application UI within predefined Add-ins tab and the specified group. If no such button exists a new one is created.
| group | The reference to the ribbon group. |
| buttonName | The name of the ribbon button |
| IRibbonGroup Bexel.Api.IUIApplication.GetOrCreateRibbonGroup | ( | string | tabName, |
| string | groupName | ||
| ) |
Retrieves a ribbon group with the specified name from the host application UI within the specified tab. If no such group exists a new one is created.
| tabName | The name of the ribbon tab. |
| groupName | The name of the ribbon group. |
| System.NotSupportedException | If any of the predefined tabs are specified. |
| IRibbonGroup Bexel.Api.IUIApplication.GetOrCreateRibbonGroup | ( | IRibbonTab | tab, |
| string | groupName | ||
| ) |
Retrieves a ribbon group with the specified name from the host application UI within the specified tab. If no such group exists a new one is created.
| tab | The reference to the ribbon tab. |
| groupName | The name of the ribbon group. |
| IRibbonGroup Bexel.Api.IUIApplication.GetOrCreateRibbonGroup | ( | string | groupName | ) |
Retrieves a ribbon group with the specified name from the host application UI within predefined Add-ins tab. If no such group exists a new one is created.
| groupName | The name of the ribbon group. |
| IRibbonTab Bexel.Api.IUIApplication.GetOrCreateRibbonTab | ( | string | tabName | ) |
Retrieves a ribbon tab with the specified name from the host application UI. If no such tab exists a new one is created.
| tabName | The name of the ribbon tab. |
| System.NotSupportedException | If any of the predefined tabs are specified. |
|
get |
Contains logic for embedding add-in user interface controls within the host application user interface layout.