User32WindowFromPhysicalPoint(NativePoint) Method
Retrieves a handle to the window that contains the specified physical point.
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 WindowFromPhysicalPoint(
NativePoint pt
)
<DllImportAttribute("User32.dll", ExactSpelling := true>]
Public Shared Function WindowFromPhysicalPoint (
pt As NativePoint
) As IntPtr
Dim pt As NativePoint
Dim returnValue As IntPtr
returnValue = User32.WindowFromPhysicalPoint(pt)
public:
[DllImportAttribute(L"User32.dll", ExactSpelling = true)]
static IntPtr WindowFromPhysicalPoint(
NativePoint pt
)
[<DllImportAttribute("User32.dll", ExactSpelling = true)>]
static member WindowFromPhysicalPoint :
pt : NativePoint -> IntPtr
No code example is currently available or this language may not be supported.
- pt NativePoint
-
The physical coordinates of the point
IntPtr
A handle to the window that contains the given physical point.
If no window exists at the point, this value is
Zero.