Function Reference

_GUICtrlMenu_SetMenuHeight

メニューの最大高さを設定します。

#Include <GuiMenu.au3>
_GUICtrlMenu_SetMenuHeight($hMenu, $iHeight)

 

パラメータ

$hMenu メニューのハンドル
$iHeight メニューの最大高さ

 

返し値

成功: True
失敗: False

 

注意

なし。

 

関連

_GUICtrlMenu_GetMenuHeight

 


#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