Function Reference

_GUICtrlSlider_SetSel

利用可能な選択範囲の開始位置、終了位置を設定します。

#Include <GuiSlider.au3>
_GUICtrlSlider_SetSel($hWnd, $iMinimum, $iMaximum)

 

パラメータ

$hWnd コントロールのハンドル
$iMinimum 選択範囲の開始論理位置
$iMaximum 選択範囲の終了論理位置

 

返し値

なし。

 

注意

スライダーに$TBS_ENABLESELRANGEスタイルが設定されていない場合、この関数は無視されます。
_GUICtrlSlider_SetSelを使用するとスライダーの利用可能範囲部分のみ使用できるよう制限できます。

 

関連

_GUICtrlSlider_GetSel, _GUICtrlSlider_SetSelEnd, _GUICtrlSlider_SetSelStart, _GUICtrlSlider_ClearSel

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiSlider.au3>

Opt('MustDeclareVars', 1)

$Debug_S = False ; 関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $aSel, $hSlider

    ; GUIを作成
    GUICreate("Slider Set Sel", 400, 296)
    $hSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE))
    GUISetState()

    ; 選択部を設定
    _GUICtrlSlider_SetSel($hSlider, 10, 50)
   
    ; 選択部を取得
    $aSel = _GUICtrlSlider_GetSel($hSlider)
    MsgBox(4160, "Information", StringFormat("Sel: %d - %d", $aSel[0], $aSel[1]))

    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main