CWindow::DestroyWindow
CWindow のオブジェクトに関連付けられたウィンドウを破棄し、NULLに m_hWnd を設定します。
BOOL DestroyWindow( ) throw();
解説
Windows SDKの DestroyWindow を参照してください。
これは CWindow のオブジェクト自体を破棄しません。
使用例
//The following example attaches an HWND to the CWindow object and
//calls CWindow::DestroyWindow() to destroy the window
CWindow myWindow;
myWindow.Attach(hWndChild);
//call the CWindow wrappers
myWindow.DestroyWindow();
hWndChild = NULL;
必要条件
Header: atlwin.h