Retrieves the application defined value
#include <GuiMenu.au3>
_GUICtrlMenu_GetMenuData ( $hMenu )
$hMenu | Handle of the menu |
#include <GuiMenu.au3>
Example()
Func Example()
Local $hWnd, $hMain, $hFile
; Open Notepad
Run("notepad.exe")
WinWaitActive("[CLASS:Notepad]")
$hWnd = WinGetHandle("[CLASS:Notepad]")
$hMain = _GUICtrlMenu_GetMenu($hWnd)
$hFile = _GUICtrlMenu_GetItemSubMenu($hMain, 0)
; Get/Set File menu data
Writeln("File data: " & _GUICtrlMenu_GetMenuData($hFile))
_GUICtrlMenu_SetMenuData($hFile, 1234)
Writeln("File data: " & _GUICtrlMenu_GetMenuData($hFile))
EndFunc ;==>Example
; Write a line of text to Notepad
Func Writeln($sText)
ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CRLF)
EndFunc ;==>Writeln