User32RealChildWindowFromPoint(IntPtr, Point) 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.
Namespace: DevCase.Win32.NativeMethodsAssembly: 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,
Point pt
)
<DllImportAttribute("User32.dll", ExactSpelling := true>]
Public Shared Function RealChildWindowFromPoint (
hwndParent As IntPtr,
pt As Point
) As IntPtr
Dim hwndParent As IntPtr
Dim pt As Point
Dim returnValue As IntPtr
returnValue = User32.RealChildWindowFromPoint(hwndParent,
pt)
public:
[DllImportAttribute(L"User32.dll", ExactSpelling = true)]
static IntPtr RealChildWindowFromPoint(
IntPtr hwndParent,
Point pt
)
[<DllImportAttribute("User32.dll", ExactSpelling = true)>]
static member RealChildWindowFromPoint :
hwndParent : IntPtr *
pt : Point -> IntPtr
No code example is currently available or this language may not be supported.
- hwndParent IntPtr
-
A handle to the window whose child is to be retrieved.
- pt Point
-
A structure that defines the client coordinates of the point to be checked.
IntPtr
The return value is a handle to the child window that contains the specified point.