Définit la position logique de fin d'une plage de sélection
#include <GuiSlider.au3>
_GUICtrlSlider_SetSelEnd ( $hWnd, $iMaximum )
$hWnd | ID/handle du contrôle Slider |
$iMaximum | Position logique de fin de la plage de sélection |
_GUICtrlSlider_ClearSel, _GUICtrlSlider_GetSel, _GUICtrlSlider_GetSelEnd, _GUICtrlSlider_SetSel, _GUICtrlSlider_SetSelStart
#include <GUIConstantsEx.au3> #include <GuiSlider.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $idSlider ; Crée une GUI GUICreate("Slider Set Sel End", 400, 296) $idSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE)) GUISetState(@SW_SHOW) ; Définit Sel End _GUICtrlSlider_SetSelEnd($idSlider, 50) ; Obtient Sel End MsgBox($MB_SYSTEMMODAL, "Information", "Sel End: " & _GUICtrlSlider_GetSelEnd($idSlider)) ; Boucle jusqu'à ce que l'utilisateur quitte. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example