int SetPanelMenuBar (int panelHandle, int menuBarHandle);
Assigns a menu bar to the panel you specify.
A panel can have only one menu bar at a time, but multiple panels can share the same menu bar.
Input | ||
Name | Type | Description |
panelHandle | integer | Specifier for a particular panel that is currently in memory. You obtain this handle from LoadPanel, NewPanel, or DuplicatePanel. |
menuBarHandle | integer | Specifier for a particular menu bar that is currently in memory. You obtain
this handle from LoadMenuBar or NewMenuBar. If the menu bar was automatically loaded through LoadPanel, use GetPanelMenuBar to get the menu bar handle. |
Name | Type | Description | ||||
status | integer | Return value indicating whether the function was successful. A negative number indicates that an error occurred.
|