WindowFromPoint Function
Declaration
Private Declare Function WindowFromPoint Lib "user32" (ByVal X As Long, ByVal Y As Long) As Long
Description of Function
Gets the handle of the window that contains the specified point. Ignores disabled, hidden, and transparent windows.
Parameter Type / Description
x Long / X point value.
y Long / Y point value.
Return Value
Long / TRUE on success, ZERO on error
|