Obtient des informations sur un �l�ment d�clencheur
#include <GuiToolTip.au3>
_GUIToolTip_GetToolInfo ( $hWnd, $hTool, $iID )
$hWnd | Handle du contr�le info-bulle (retourn� par _GUIToolTip_Create.) |
$hTool | Handle de la fen�tre qui contient l'�l�ment |
$iID | Identifiant de l'�l�ment, ou handle Window du contr�le auquel l'�l�ment est affect� |
_GUIToolTip_EnumTools, _GUIToolTip_GetCurrentTool, _GUIToolTip_SetToolInfo, _GUIToolTip_ToolToArray
#include <GUIConstantsEx.au3> #include <GUIToolTip.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $hGUI = GUICreate(StringTrimRight(@ScriptName, StringLen(".exe")), 350, 200) Local $idButton = GUICtrlCreateButton("This is a button", 30, 32, 130, 28) Local $hButton = GUICtrlGetHandle($idButton) ; Cr�e un contr�le info-bulle avec les param�tres par d�faut Local $hToolTip = _GUIToolTip_Create(0) ; Ajoute un �l�ment au contr�le info-bulle _GUIToolTip_AddTool($hToolTip, 0, "This is a ToolTip", $hButton) GUISetState(@SW_SHOW) ; Affiche des informations sur l'�l�ment assign� au bouton Local $aTool = _GUIToolTip_GetToolInfo($hToolTip, 0, $hButton) MsgBox($MB_SYSTEMMODAL, "Tooltip info", "Flags: " & @TAB & _GUIToolTip_BitsToTTF($aTool[0]) & @CRLF & _ "HWnd: " & @TAB & $aTool[1] & @CRLF & _ "ID: " & @TAB & $aTool[2] & @CRLF & _ "Left X:" & @TAB & $aTool[3] & @CRLF & _ "Left Y:" & @TAB & $aTool[4] & @CRLF & _ "Right X:" & @TAB & $aTool[5] & @CRLF & _ "Right Y:" & @TAB & $aTool[6] & @CRLF & _ "Instance:" & @TAB & $aTool[7] & @CRLF & _ "Text:" & @TAB & $aTool[8] & @CRLF & _ "lParam:" & @TAB & $aTool[9]) _GUIToolTip_Destroy($hToolTip) GUIDelete($hGUI) EndFunc ;==>Example