Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 999 Bytes

File metadata and controls

47 lines (31 loc) · 999 Bytes

Home

Function name : GetMenuContextHelpId

Group: Shell Functions - Library: user32


Retrieves the Help context identifier associated with the specified menu.


Code examples:

Retrieving window and menu help context identifiers

Declaration:

DWORD GetMenuContextHelpId(
	HMENU hmenu
);  

FoxPro declaration:

DECLARE INTEGER GetMenuContextHelpId IN user32;
	INTEGER hmenu  

Parameters:

hmenu Handle to the menu for which the Help context identifier is to be retrieved.


Return value:

Returns the Help context identifier if the menu has one, or zero otherwise.


Comments:

See also: SetMenuContextHelpId and GetWindowContextHelpId functions.