Function Reference

_GUICtrlMenu_GetItemCount

指定されたメニュー内のアイテムの数を取得します。

#Include <GuiMenu.au3>
_GUICtrlMenu_GetItemCount($hMenu)

 

パラメータ

$hMenu メニューのハンドル

 

返し値

成功: メニュー内のアイテムの数
失敗: -1

 

注意

なし。

 

関連

 

こちらも参照

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

 


#include <GuiMenu.au3>

Opt('MustDeclareVars', 1)

_Main()

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

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

    ; メインメニューのアイテム総数を表示
    Writeln("Main menu item count: " & _GUICtrlMenu_GetItemCount($hMain))

EndFunc   ;==>_Main

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