Function Reference


_GUIScrollBars_SetScrollInfo

Sets the parameters of a scroll bar

#include <GuiScrollBars.au3>
_GUIScrollBars_SetScrollInfo ( $hWnd, $iBar, $tSCROLLINFO [, $bRedraw = True] )

Parameters

$hWnd Handle to the window
$iBar Specifies the type of scroll bar. This parameter can be one of the following values:
    $SB_CTL - Sets the parameters of a scroll bar control. The $hWnd parameter must be the handle to the scroll bar control.
    $SB_HORZ - Sets the parameters of the window's standard horizontal scroll bar.
    $SB_VERT - Sets the parameters of the window's standard vertical scroll bar.
$tSCROLLINFO Structure of type $tagSCROLLINFO
$bRedraw [optional] Specifies whether the scroll bar is redrawn to reflect the changes to the scroll bar

Return Value

Success: the current position of the scroll box.
Failure: -1.

Related

_GUIScrollBars_GetScrollInfo, _GUIScrollBars_SetScrollInfoMax, _GUIScrollBars_SetScrollInfoMin, _GUIScrollBars_SetScrollInfoPage, _GUIScrollBars_SetScrollInfoPos

See Also

Search SetScrollInfo in MSDN Library.

Example

#include "Extras\HelpFileInternals.au3"

#include <GUIConstantsEx.au3>
#include <GuiScrollBars.au3>
#include <StructureConstants.au3>
#include <WindowsStylesConstants.au3>

Example()

Func Example()
    Local $hGUI = GUICreate("ScrollBars Get/Set ScrollInfo (v" & @AutoItVersion & ")", 400, 400, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_SIZEBOX))
    _MemoCreate(2, 2, 380, 360, BitOR($WS_HSCROLL, $WS_VSCROLL))
    GUICtrlSetResizing($_g_idLst_Memo, $GUI_DOCKALL)
    GUICtrlSetFont($_g_idLst_Memo, 9, 400, 0, "Courier New")
    GUISetBkColor(0x88AABB)

    GUISetState(@SW_SHOW)

    _GUIScrollBars_Init($hGUI)

    Local $tSCROLLINFO = DllStructCreate($tagSCROLLINFO)
    DllStructSetData($tSCROLLINFO, "cbSize", DllStructGetSize($tSCROLLINFO))
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_ALL)
    _GUIScrollBars_GetScrollInfo($hGUI, $SB_HORZ, $tSCROLLINFO)
    _MemoWrite("Horizontal" & @CRLF & "--------------------------------------")
    _MemoWrite("nPage....: " & DllStructGetData($tSCROLLINFO, "nPage"))
    _MemoWrite("nPos.....: " & DllStructGetData($tSCROLLINFO, "nPos"))
    _MemoWrite("nMin.....: " & DllStructGetData($tSCROLLINFO, "nMin"))
    _MemoWrite("nMax.....: " & DllStructGetData($tSCROLLINFO, "nMax"))
    _MemoWrite("nTrackPos: " & DllStructGetData($tSCROLLINFO, "nTrackPos"))

    DllStructSetData($tSCROLLINFO, "cbSize", DllStructGetSize($tSCROLLINFO))
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_ALL)
    _GUIScrollBars_GetScrollInfo($hGUI, $SB_VERT, $tSCROLLINFO)
    _MemoWrite(@CRLF & "Vertical" & @CRLF & "--------------------------------------")
    _MemoWrite("nPage....: " & DllStructGetData($tSCROLLINFO, "nPage"))
    _MemoWrite("nPos.....: " & DllStructGetData($tSCROLLINFO, "nPos"))
    _MemoWrite("nMin.....: " & DllStructGetData($tSCROLLINFO, "nMin"))
    _MemoWrite("nMax.....: " & DllStructGetData($tSCROLLINFO, "nMax"))
    _MemoWrite("nTrackPos: " & DllStructGetData($tSCROLLINFO, "nTrackPos"))

    ; Set the vertical scrolling range and page size
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_RANGE)
    DllStructSetData($tSCROLLINFO, "nMin", 5)
    DllStructSetData($tSCROLLINFO, "nMax", 80)
    _GUIScrollBars_SetScrollInfo($hGUI, $SB_VERT, $tSCROLLINFO)

    ; Set the horizontal scrolling range and page size
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_RANGE)
    DllStructSetData($tSCROLLINFO, "nMin", 10)
    DllStructSetData($tSCROLLINFO, "nMax", 120)
    _GUIScrollBars_SetScrollInfo($hGUI, $SB_HORZ, $tSCROLLINFO)

    DllStructSetData($tSCROLLINFO, "cbSize", DllStructGetSize($tSCROLLINFO))
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_ALL)
    _GUIScrollBars_GetScrollInfo($hGUI, $SB_HORZ, $tSCROLLINFO)
    _MemoWrite(@CRLF & "Horizontal Updated" & @CRLF & "--------------------------------------")
    _MemoWrite("nMin.....: " & DllStructGetData($tSCROLLINFO, "nMin"))
    _MemoWrite("nMax.....: " & DllStructGetData($tSCROLLINFO, "nMax"))

    DllStructSetData($tSCROLLINFO, "cbSize", DllStructGetSize($tSCROLLINFO))
    DllStructSetData($tSCROLLINFO, "fMask", $SIF_ALL)
    _GUIScrollBars_GetScrollInfo($hGUI, $SB_VERT, $tSCROLLINFO)
    _MemoWrite(@CRLF & "Vertical Updated" & @CRLF & "--------------------------------------")
    _MemoWrite("nMin.....: " & DllStructGetData($tSCROLLINFO, "nMin"))
    _MemoWrite("nMax.....: " & DllStructGetData($tSCROLLINFO, "nMax"))

    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd

    Exit
EndFunc   ;==>Example