User32RealChildWindowFromPoint(IntPtr, NativePoint) Method

Retrieves a handle to the child window at the specified point.

The search is restricted to immediate child windows; grandchildren and deeper descendant windows are not searched.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll", ExactSpelling = true)]
public static IntPtr RealChildWindowFromPoint(
	IntPtr hwndParent,
	NativePoint pt
)

Parameters

hwndParent  IntPtr
A handle to the window whose child is to be retrieved.
pt  NativePoint
A structure that defines the client coordinates of the point to be checked.

Return Value

IntPtr
The return value is a handle to the child window that contains the specified point.

Remarks

See Also