CWnd::WindowFromPoint

Retrieves the window that contains the specified point; point must specify the screen coordinates of a point on the screen.

static CWnd* PASCAL WindowFromPoint(
   POINT point 
);

Parameters

  • point
    Specifies a CPoint object or POINT data structure that defines the point to be checked.

Return Value

A pointer to the window object in which the point lies. It is NULL if no window exists at the given point. The returned pointer may be temporary and should not be stored for later use.

Remarks

WindowFromPoint does not retrieve a hidden or disabled window, even if the point is within the window. An application should use the ChildWindowFromPoint member function for a nonrestrictive search.

Requirements

Header: afxwin.h

See Also

Reference

CWnd Class

Hierarchy Chart

WindowFromPoint

CWnd::ChildWindowFromPoint

Concepts

CWnd Members