↑  ←  Описание функции


_GUICtrlMenu_GetItemStateEx

Retrieves the menu flags associated with the specified menu item

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

Параметры

$hMenu Дескриптор меню
$iItem Идентификатор или позиция пункта меню
$fByPos [необязательный] Флаг для идентификации меню:
    True - $iItem является позицией пункта, отсчёт от 0
    False - $iItem является идентификатором пункта

Возвращаемое значение

Успех:If the menu item opens a submenu the low-order byte of the return value contains the menu flags associated with the item, and the high-order byte contains the number of items in the submenu opened by the item. Otherwise, the return value is a mask of the menu flags.
Ошибка:Возвращает -1

См. также

_GUICtrlMenu_SetItemState, _GUICtrlMenu_GetItemState

Пример

#include <GuiMenu.au3>

_Main()

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

    ; Запуск блокнота
    Run("notepad.exe")
    $hWnd = WinWaitActive("[CLASS:Notepad]")
    $hMain = _GUICtrlMenu_GetMenu($hWnd)
    $hFile = _GUICtrlMenu_GetItemSubMenu($hMain, 0)

    ; Получает состояние пункта "Файл/Открыть..."
    _GUICtrlMenu_SetItemState($hFile, 1, $MFS_CHECKED)
    Writeln("Состояние: " & _GUICtrlMenu_GetItemStateEx($hFile, 1))

EndFunc   ;==>_Main

; Записывает строку текста в блокнот
Func Writeln($sText)
    ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CR)
EndFunc   ;==>Writeln