Function Reference

_GUICtrlMenu_GetMenuHeight

メニューの最大高さを取得します。

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

 

パラメータ

$hMenu メニューのハンドル

 

返し値

ピクセル単位でのメニューの最大高さを返します。

 

注意

メニューアイテムが利用可能な空間を超えた場合、自動的にスクロールバーが使用されます。デフォルト(0)はスクリーンの高さです。

 

関連

_GUICtrlMenu_SetMenuHeight

 


#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("File menu max height: " & _GUICtrlMenu_GetMenuHeight($hFile))
    _GUICtrlMenu_SetMenuHeight($hFile, 100)
    Writeln("File menu max height: " & _GUICtrlMenu_GetMenuHeight($hFile))

EndFunc   ;==>_Main

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