检索指定菜单项的矩形范围,返回矩形坐标数组.
#Include <GuiMenu.au3>
_GUICtrlMenu_GetItemRect($hWnd, $hMenu, $iItem)
$hWnd | 菜单窗口的句柄 |
$hMenu | 菜单句柄 |
$iItem | 菜单项的 0 基位置 |
返回如下格式的数组: | |
[0] = 矩形的左上角 X 坐标 | |
[1] = 矩形的左上角 Y 坐标 | |
[2] = 矩形的右下角 X 坐标 | |
[3] = 矩形的右下角 Y 坐标 |
#include <GuiMenu.au3>
_Main()
Func _Main()
Local $hWnd, $hMain, $aRect
; 打开记事本
Run("notepad.exe")
WinWaitActive("[CLASS:Notepad]")
$hWnd = WinGetHandle("[CLASS:Notepad]")
$hMain = _GUICtrlMenu_GetMenu($hWnd)
; 获取文件菜单矩形
$aRect = _GUICtrlMenu_GetItemRect($hWnd, $hMain, 0)
Writeln("File X1: " & $aRect[0])
Writeln("File Y1: " & $aRect[1])
Writeln("File X2: " & $aRect[2])
Writeln("File Y2: " & $aRect[3])
EndFunc ;==>_Main
; 写入一行文本到记事本
Func Writeln($sText)
ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CR)
EndFunc ;==>Writeln