UDF > GUI > GuiComboBox >


_GUICtrlComboBox_GetDroppedControlRectEx

Obtient les coordonnées écran d'une ComboBox dans son état déroulé (retourne une structure)

#include <GuiComboBox.au3>
_GUICtrlComboBox_GetDroppedControlRectEx ( $hWnd )

Paramètre

$hWnd ID/handle du contrôle

Valeur de retour

Retourne une structure $tagRECT qui reçoit les coordonnées écran.

En relation

$tagRECT, _GUICtrlComboBox_GetDroppedControlRect

Exemple

#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>

Global $g_idMemo

Example()

Func Example()
    Local $tRECT, $idCombo

    ; Crée une GUI
    GUICreate("ComboBox Get Dropped Control RectEx", 400, 296)
    $idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    $g_idMemo = GUICtrlCreateEdit("", 2, 32, 396, 266, 0)
    GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
    GUISetState(@SW_SHOW)

    ; Ajoute des fichiers
    _GUICtrlComboBox_BeginUpdate($idCombo)
    _GUICtrlComboBox_AddDir($idCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBox_EndUpdate($idCombo)

    ; Obtient le rectangle contenant le contrôle déroulé
    $tRECT = _GUICtrlComboBox_GetDroppedControlRectEx($idCombo)

    MemoWrite("X coordinate of the upper left corner ......: " & DllStructGetData($tRECT, "Left"))
    MemoWrite("Y coordinate of the upper left corner ......: " & DllStructGetData($tRECT, "Top"))
    MemoWrite("X coordinate of the lower right corner .....: " & DllStructGetData($tRECT, "Right"))
    MemoWrite("Y coordinate of the lower right corner .....: " & DllStructGetData($tRECT, "Bottom"))

    ; Boucle jusqu'à ce que l'utilisateur quitte
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example

; Ecrit une ligne dans le contrôle Mémo
Func MemoWrite($sMessage)
    GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite