Функция _GUICtrlODMenuItemSetText

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


_GUICtrlODMenuItemSetText

Устанавливает текст пункта меню

#Include <ModernMenuRaw.au3>
_GUICtrlODMenuItemSetText ( $nMenuID, $sText )

Параметры

$nMenuID Идентификатор меню
$sText Текст

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

Успех:Возвращает 1
Ошибка:Возвращает 0

Пример

#include <ModernMenuRaw.au3>

$hGui = GUICreate("Изменить текст пункта", 300, 200)

$iFileMenu = GUICtrlCreateMenu("&Файл")
_SetMenuIconBkColor(0x99EE99)

Global $aItem[6] = [5]

For $i = 1 To $aItem[0]
    $aItem[$i] = _GUICtrlCreateODMenuItem("Пункт " & $i, $iFileMenu, "shell32.dll", -$i - 21)
Next
$iButton = GUICtrlCreateButton("Изменить текст пункта", 50, 130, 170, 28)
GUISetState()
Send('^{F10}{Enter}')

While 1
    Switch GUIGetMsg()
        Case $iButton
            For $i = 1 To $aItem[0]
                _GUICtrlODMenuItemSetText($aItem[$i], "Пункт " & Random(10, 99, 1))
            Next
            Send('^{F10}{Enter}')
        Case -3
            Exit
    EndSwitch
WEnd