Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 970 Bytes

File metadata and controls

45 lines (31 loc) · 970 Bytes

Home

Function name : IsMenu

Group: Menu - Library: user32


The IsMenu function determines whether a handle is a menu handle.


Code examples:

Programmatically removing submenus from VFP main menu
Reading the structure of VFP main menu
Accessing Adobe Reader 7.0 main menu from VFP application
How to control Adobe Reader 9.0 (SDI mode) from VFP application

Declaration:

BOOL IsMenu(
	HMENU hMenu
);  

FoxPro declaration:

DECLARE INTEGER IsMenu IN user32;
	INTEGER hMenu  

Parameters:

hMenu [in] Handle to be tested.


Return value:

If hMenu is a menu handle, the return value is nonzero.