Retrieves the text of a tool
#include <GuiToolTip.au3>
_GUIToolTip_GetText ( $hWnd, $hTool, $iID )
$hWnd | Handle to the ToolTip control (returned by _GUIToolTip_Create.) |
$hTool | Handle to the window that contains the tool |
$iID | Identifier of the tool, or Window handle of the control the tool is assigned to |
#include <GUIConstantsEx.au3>
#include <GUIToolTip.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
Local $hGUI = GUICreate(StringTrimRight(@ScriptName, StringLen(".exe")), 350, 200)
Local $idButton = GUICtrlCreateButton("Button", 30, 32, 130, 28)
Local $hButton = GUICtrlGetHandle($idButton)
Local $hToolTip = _GUIToolTip_Create($hGUI)
_GUIToolTip_AddTool($hToolTip, 0, "This is the ToolTip text", $hButton)
GUISetState(@SW_SHOW)
; Retrieve the text of the tool
MsgBox($MB_SYSTEMMODAL, 'Message', _GUIToolTip_GetText($hToolTip, 0, $hButton))
While 1
If GUIGetMsg() = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
; Destroy the tooltip control
_GUIToolTip_Destroy($hToolTip)
GUIDelete($hGUI)
EndFunc ;==>Example