Funktionreferenz


_WinAPI_GetCapture


Gets the handle to the window (if any) that has captured the mouse

#include <WinAPISys.au3>
_WinAPI_GetCapture ( )

Parameter

None.

Rückgabewert

Success: handle to the window that has the captured the mouse
Failure: Null handle if none found

Bemerkungen

None.

Verwandte Funktionen

_WinAPI_SetCapture

Siehe auch

Suche nach GetCapture in der MSDN Bibliothek.

Beispiel

#include <WinAPISys.au3>

Local $Hwnd = _WinAPI_GetCapture()
MsgBox(0, "Maus Capture Handle", $Hwnd)