Obtient le rectangle (structure) qui délimite un élément
#include <GuiListBox.au3>
_GUICtrlListBox_GetItemRectEx ( $hWnd, $iIndex )
$hWnd | ID/handle du contrôle |
$iIndex | Index de l'élément, compté à partir de 0 |
$tagRECT, _GUICtrlListBox_GetItemRect
#include <GUIConstantsEx.au3> #include <GuiListBox.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $tRECT, $idListBox ; Crée une GUI GUICreate("List Box Get Item RectEx", 400, 296) $idListBox = GUICtrlCreateList("", 2, 2, 396, 296) GUISetState(@SW_SHOW) ; Ajoute des chaînes _GUICtrlListBox_BeginUpdate($idListBox) For $iI = 1 To 9 _GUICtrlListBox_AddString($idListBox, StringFormat("%03d : Random string", Random(1, 100, 1))) Next _GUICtrlListBox_EndUpdate($idListBox) ; Affiche le retangle de l'élément $tRECT = _GUICtrlListBox_GetItemRectEx($idListBox, 4) MsgBox($MB_SYSTEMMODAL, "Information", "Item 5 Rectangle: " & _ DllStructGetData($tRECT, "Left") & ", " & _ DllStructGetData($tRECT, "Top") & ", " & _ DllStructGetData($tRECT, "Right") & ", " & _ DllStructGetData($tRECT, "Bottom")) ; Boucle jusqu'à ce que l'utilisateur quitte. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example