CommandBar_InsertButton
The CommandBar_InsertButton function inserts a button into the command bar.
Syntax
BOOL CommandBar_InsertButton(HWND hwndCB, int iButton, LPTBBUTTON lpButton);
At a Glance
Header file: |
Commctrl.h |
Platforms: |
H/PC |
Windows CE versions: |
1.0 and later |
Parameters
- hwndCB
- The command bar's window handle. This handle is returned by the CommandBar_Create function when the command bar is created.
- iButton
- Zero-based index of a button in the command bar. CommandBar_InsertButton inserts the new button to the left of this button.
- lpButton
- Pointer to a TBBUTTON structure that contains information about the button to insert.
Return Values
TRUE if the function succeeds. FALSE if it fails.
See Also
CommandBar_AddButtons, CommandBar_Create, CommandBar_InsertComboBox, CommandBar_InsertMenubar, TBBUTTON