HWND ChildWindowFromPoint(
HWND hWndParent, // handle to parent window
POINT Point // structure with point coordinates
);
hWndParent
Handle to the parent window.
Point
Specifies aPOINT structure that defines the client coordinates of the point to be checked.
ÇÏâȣ2009/04/16
HWND ChildWindowFromPointEx(
HWND hwndParent, // handle to parent window
POINT pt, // structure with point coordinates
UINT uFlags // skipping flags
);
Parameters
hwndParent
Handle to the parent window.
pt
Specifies aPOINT structure that defines the client coordinates of the point to be checked.
uFlags
Specifies which child windows to skip. This parameter can be a combination of the following values: Value Meaning
CWP_ALL Do not skip any child windows
CWP_SKIPINVISIBLE Skip invisible child windows
CWP_SKIPDISABLED Skip disabled child windows
CWP_SKIPTRANSPARENT Skip transparent child windows