跳至主要内容

GetMenuColumnHeader

注意

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Get the text in the header of the specified column.

NameDescription
Menu:menuidThe ID of the menu.
columnThe column.
header[]An array into which to store the text, passed by reference.
len = sizeof (header)The length of the text that should be stored.

Returns

This function always returns true.

Examples

new text[32];

// Get the menu header text in the column 1
GetMenuColumnHeader(menuid, 1, text, sizeof(text));