检索指定窗口的信息,返回信息结构.
#Include <WinAPIEx.au3>
_WinAPI_GetWindowInfo ( $hWnd )
$hWnd | 窗口句柄. |
成功: | 返回 $tagWINDOWINFO 结构,包含指定窗口的相关信息. |
失败: | 返回 0,并设置@error标志为非 0 值. |
在MSDN中搜索
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $tWINDOWINFO = _WinAPI_GetWindowInfo(_WinAPI_GetDesktopWindow())
ConsoleWrite('Left: ' & DllStructGetData($tWINDOWINFO, 'rWindow', 1) & @CR)
ConsoleWrite('Top: ' & DllStructGetData($tWINDOWINFO, 'rWindow', 2) & @CR)
ConsoleWrite('Right: ' & DllStructGetData($tWINDOWINFO, 'rWindow', 3) & @CR)
ConsoleWrite('Bottom: ' & DllStructGetData($tWINDOWINFO, 'rWindow', 4) & @CR)