指定されたメニューアイテムの外接長方形を取得します。
#Include <GuiMenu.au3>
_GUICtrlMenu_GetItemRect($hWnd, $hMenu, $iItem)
パラメータ
$hWnd | メニューを格納しているウィンドウのハンドル |
$hMenu | メニューのハンドル |
$iItem | メニューアイテムのゼロ始まりの位置 |
返し値
次のフォーマットの配列を返します。
注意
なし。
関連
_GUICtrlMenu_GetItemRectEx
例
#include <GuiMenu.au3>
Opt('MustDeclareVars', 1)
_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
; メモ帳にテキストを1行書き込む
Func Writeln($sText)
ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CR)
EndFunc ;==>Writeln