Function Reference


_GUICtrlSlider_SetPageSize

Sets the number of logical positions the slider moves

#include <GuiSlider.au3>
_GUICtrlSlider_SetPageSize ( $hWnd, $iPageSize )

Parameters

$hWnd Control ID/Handle to the control
$iPageSize New page size

Return Value

Returns the previous page size.

Related

_GUICtrlSlider_GetPageSize

Example

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

Example()

Func Example()
        ; Create GUI
        GUICreate("Slider Get/Set Page Size (v" & @AutoItVersion & ")", 400, 296)
        Local $idSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE))
        GUISetState(@SW_SHOW)

        ; Get Page Size
        MsgBox($MB_SYSTEMMODAL, "Information", "Page Size: " & _GUICtrlSlider_GetPageSize($idSlider))

        ; Set Page Size
        _GUICtrlSlider_SetPageSize($idSlider, 4)

        ; Get Page Size
        MsgBox($MB_SYSTEMMODAL, "Information", "Page Size: " & _GUICtrlSlider_GetPageSize($idSlider))

        ; Loop until the user exits.
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>Example