DestroyWindow

 

Description

Destroys the specified window.

Syntax

BOOL DestroyWindow( HWND hWnd )

Parameters

hWnd
[input] Handle to the window to be destroyed.

Return

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.

Examples

Remark

This function destroys the specified window. The function sends WM_DESTROY and WM_NCDESTROY messages to the window to deactivate it and remove the keyboard focus from it.

The function also destroys the window's menu, flushes the thread message queue, destroys timers, removes clipboard ownership, and breaks the clipboard viewer chain (if the window is at the top of the viewer chain).

If the specified window is a parent or owner window, DestroyWindow automatically destroys the associated child or owned windows when it destroys the parent or owner window.

The function first destroys child or owned windows, and then it destroys the parent or owner window.

See Also

Header to Include

origin.h

Reference