Function Reference

_GUICtrlMenu_GetItemRectEx

指定されたメニューアイテムの外接長方形を取得します。

#Include <GuiMenu.au3>
_GUICtrlMenu_GetItemRectEx($hWnd, $hMenu, $iItem)

 

パラメータ

$hWnd メニューを格納しているウィンドウのハンドル
$hMenu メニューのハンドル
$iItem メニューアイテムのゼロ始まりの位置

 

返し値

成功: tagRECT構造体
失敗: @errorを設定します。

 

注意

なし。

 

関連

_GUICtrlMenu_GetItemRect

 

こちらも参照

MSDNライブラリでGetMenuItemRectを検索して下さい。

 


#include <GuiMenu.au3>

Opt('MustDeclareVars', 1)

_Main()

Func _Main()
    Local $hWnd, $hMain, $tRect

    ; メモ帳を開く
    Run("Notepad.exe")
    WinWaitActive("[CLASS:Notepad]")
    $hWnd = WinGetHandle("[CLASS:Notepad]")
    $hMain = _GUICtrlMenu_GetMenu($hWnd)

    ; ファイルメニューの長方形を取得
    $tRect = _GUICtrlMenu_GetItemRectEx($hWnd, $hMain, 0)

    Writeln("File X1: " & DllStructGetData($tRect, "Left"))
    Writeln("File Y1: " & DllStructGetData($tRect, "Top"))
    Writeln("File X2: " & DllStructGetData($tRect, "Right"))
    Writeln("File Y2: " & DllStructGetData($tRect, "Bottom"))

EndFunc   ;==>_Main

; メモ帳にテキストを1行書き込む
Func Writeln($sText)
    ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CR)
EndFunc   ;==>Writeln