CMenu::Detach
Rimuove un menu di Windows da un oggetto CMenu e restituisce l'handle.
HMENU Detach( );
Valore restituito
L'handle, di tipo HMENU, a un menu di Windows, in caso di esito positivo; in caso contrario NULL.
Note
Il membro dati m_hMenu è impostato su NULL.
Esempio
CMenu mnu;
HMENU hmnu = AfxGetMainWnd()->GetMenu()->GetSafeHmenu();
mnu.Attach(hmnu);
// Now you can manipulate the window's menu as a CMenu
// object...
mnu.Detach();
Requisiti
Header: afxwin.h