v2.37
|
|
IUIPanelExtension represents a collection of UI elements which are placed in a separate layout group of a UI panel. More...
Public Member Functions | |
HRESULT | AddDropDownButton ([in] IDropDownButton *pDropDownButton) |
Adds a drop-down button to the panel extension. | |
HRESULT | AddSplitButton ([in] ISplitButton *pSplitButton) |
Adds a split button to the panel extension. | |
HRESULT | AddToolButton ([in] IAction *pAction) |
Adds a tool button to the panel extension. | |
HRESULT | AddToolButton2 ([in] IToolButton *pToolButton) |
Adds a tool button to the panel extension. | |
IUIPanelExtension represents a collection of UI elements which are placed in a separate layout group of a UI panel.
Actions can be grouped in three ways:
To display its contents, the extension has to be added to a UI panel. Controls in the extension are displayed in the order they were added to it. The same extension can be added to different panels.
An extension exists in Renga until the application is closed.
HRESULT AddDropDownButton | ( | [in] IDropDownButton * | pDropDownButton | ) |
Adds a drop-down button to the panel extension.
[in] | pDropDownButton | The drop-down button to add. |
HRESULT AddSplitButton | ( | [in] ISplitButton * | pSplitButton | ) |
Adds a split button to the panel extension.
[in] | pSplitButton | The split button to add. |
HRESULT AddToolButton | ( | [in] IAction * | pAction | ) |
Adds a tool button to the panel extension.
[in] | pAction | The action for the button to add |
HRESULT AddToolButton2 | ( | [in] IToolButton * | pToolButton | ) |
Adds a tool button to the panel extension.
[in] | pToolButton | The tool button to add |