函数参考


_GUICtrlMenu_GetItemStateEx

检索关联指定菜单项的标志

#Include <GuiMenu.au3>
_GUICtrlMenu_GetItemStateEx($hMenu, $iItem[, $fByPos = True])

参数

$hMenu 菜单句柄
$iItem 菜单项的标识符或位置,由 $fByPos 参数决定.
$fByPos [可选参数] 菜单识别标志:
True - $iItem 为项目的 0 基位置
False - $iItem 为菜单项的标识符

返回值

成功: 如果该菜单项打开一个子菜单,返回值的低字节包含菜单与该项目有关的标志;
高字节包含打开的子菜单项数,否则,返回值是菜单的标志掩码.
失败: 返回 -1

注意/说明

None.

相关

_GUICtrlMenu_SetItemState, _GUICtrlMenu_GetItemState

示例/演示


#include <GuiMenu.au3>

_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)

    ; Get Open item state
    _GUICtrlMenu_SetItemState($hFile, 1, $MFS_CHECKED)
    Writeln("Open item state: " & _GUICtrlMenu_GetItemStateEx($hFile, 1))

EndFunc   ;==>_Main

; 写入一行文本到记事本
Func Writeln($sText)
    ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CR)
EndFunc   ;==>Writeln