Pular para o conteúdo principal

SetMenuColumnHeader

Description

Sets the caption of a column in a menu.

NameDescription
Menu:menuidID of the menu to change.
columnThe column (0 or 1) to set the header of.
const text[]The caption text for the column.
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

This function does not return any specific values.

Examples

new Menu:gTestMenu;

// There are two rows in this menu
gTestMenu = CreateMenu("Menu Header", 2, 200.0, 100.0, 150.0, 150.0);
SetMenuColumnHeader(gTestMenu, 0, "Row 1");
SetMenuColumnHeader(gTestMenu, 1, "Row 2");

// Add menu items to it.
AddMenuItem(gTestMenu, 0, "Row1 Item1");
AddMenuItem(gTestMenu, 1, "Row2 Item1");

Notes

dica

Crashes when passed an invalid menu ID.

atenção

Note that you can add only 12 items with AddMenuItem. The 13th object of a menu would replace the header of the column which is correctly set with this function.