UDF > GUI > GuiSlider >


_GUICtrlSlider_GetSelStart

Obtient la position de départ de la plage de sélection en cours

#include <GuiSlider.au3>
_GUICtrlSlider_GetSelStart ( $hWnd )

Paramètre

$hWnd ID/handle du contrôle Slider

Valeur de retour

Retourne la position de départ de la plage de sélection en cours.

En relation

_GUICtrlSlider_SetSelStart

Exemple

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

Example()

Func Example()
    Local $idSlider

    ; Crée une GUI
    GUICreate("Slider Get Sel Start", 400, 296)
    $idSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE))
    GUISetState(@SW_SHOW)

    ; Définit Sel Start
    _GUICtrlSlider_SetSelStart($idSlider, 10)

    ; Obtient Sel Start
    MsgBox($MB_SYSTEMMODAL, "Information", "Sel Start: " & _GUICtrlSlider_GetSelStart($idSlider))

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