AddMenuItem
Description:
Function AddMenuItem adds an item to a specified menu.
|
Parameters:
(Menu:menuid, column, title[])
int | menuid | The menu id to add an item to. |
int | column | The column to add the item to. |
string | title | The title for the new menu item. |
Return Values:
The index of the row this item was added to.
Examples:
new Menu:examplemenu; public OnGameModeInit() { examplemenu = CreateMenu("Your Menu", 2, 200.0, 100.0, 150.0, 150.0); AddMenuItem(examplemenu, 0, "item 1"); AddMenuItem(examplemenu, 0, "item 2"); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- CreateMenu: Create a menu.
- SetMenuColumnHeader: Set the header for one of the columns in a menu.
- DestroyMenu: Destroy a menu.
Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.
- OnPlayerSelectedMenuRow: Called when a player selected a row in a menu.
- OnPlayerExitedMenu: Called when a player exits a menu.