Sets the application defined value for a menu item
#include <GuiMenu.au3>
_GUICtrlMenu_SetItemData ( $hMenu, $iItem, $iData [, $bByPos = True] )
$hMenu | Menu handle |
$iItem | Identifier or position of the menu item |
$iData | Application defined value |
$bByPos | [optional] Menu identifier flag: True - $iItem is a 0-based item position False - $iItem is a menu item identifier |
Success: | True. |
Failure: | False. |
#include <GuiMenu.au3>
Example()
Func Example()
Local $hWnd, $hMain
; Open Notepad
Run("notepad.exe")
WinWaitActive("[CLASS:Notepad]")
$hWnd = WinGetHandle("[CLASS:Notepad]")
$hMain = _GUICtrlMenu_GetMenu($hWnd)
; Get/Set File menu item data
Writeln("File menu item data: " & _GUICtrlMenu_GetItemData($hMain, 0))
_GUICtrlMenu_SetItemData($hMain, 0, 1234)
Writeln("File menu item data: " & _GUICtrlMenu_GetItemData($hMain, 0))
EndFunc ;==>Example
; Write a line of text to Notepad
Func Writeln($sText)
ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CRLF)
EndFunc ;==>Writeln