DeleteMenu function (winuser.h)
Deletes an item from the specified menu. If the menu item opens a menu or submenu, this function destroys the handle to the menu or submenu and frees the memory used by the menu or submenu.
Syntax
BOOL DeleteMenu(
[in] HMENU hMenu,
[in] UINT uPosition,
[in] UINT uFlags
);
Parameters
[in] hMenu
Type: HMENU
A handle to the menu to be changed.
[in] uPosition
Type: UINT
The menu item to be deleted, as determined by the uFlags parameter.
[in] uFlags
Type: UINT
Indicates how the uPosition parameter is interpreted. This parameter must be one of the following values.
Return value
Type: BOOL
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The application must call the DrawMenuBar function whenever a menu changes, whether the menu is in a displayed window.
Examples
For an example, see Example of a Clipboard Viewer.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | winuser.h (include Windows.h) |
Library | User32.lib |
DLL | User32.dll |
API set | ext-ms-win-ntuser-menu-l1-1-0 (introduced in Windows 8) |
See also
Conceptual
Reference