Function Reference

_GUIScrollBars_GetScrollBarXYThumbBottom

つまみの下端または右端の座標を取得します。

#Include <GuiScrollBars.au3>
_GUIScrollBars_GetScrollBarXYThumbBottom($hWnd, $idObject)

 

パラメータ

$hWnd ウィンドウのハンドル
$idObject スクロールバーオブジェクトを指定します。このパラメータは次の値のいずれかです:
  $OBJID_CLIENT - $hWndパラメータはスクロールバーコントロールのハンドルです。
  $OBJID_HSCROLL - $hWndウィンドウの水平スクロールバー。
  $OBJID_VSCROLL - $hWndウィンドウの垂直スクロールバー。

 

返し値

成功: つまみの下端または右端の座標
失敗: -1を返し、@errorを設定します。

 

注意

上記の定数にはScrollBarConstants.au3が必要です。

 

関連

_GUIScrollBars_GetScrollBarInfoEx

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <StructureConstants.au3>
#include <GUIScrollBars.au3>
#include <ScrollBarConstants.au3>

Opt("MustDeclareVars", 1)

Global $iMemo

_Main()

Func _Main()
    Local $GUIMsg, $hGUI

    $hGUI = GUICreate("ScrollBar Example", 400, 400, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_SIZEBOX))
    $iMemo = GUICtrlCreateEdit("", 2, 2, 380, 380, BitOR($WS_HSCROLL, $WS_VSCROLL))
    GUICtrlSetResizing($iMemo, $GUI_DOCKALL)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
    GUISetBkColor(0x88AABB)
   
    GUISetState()

    _GUIScrollBars_Init($hGUI)

    MemoWrite("Horizontal" & @CRLF & "--------------------------------------")
    MemoWrite("Left of thumb: " & _GUIScrollBars_GetScrollBarXYThumbTop($hGUI, $OBJID_HSCROLL))
    MemoWrite("Right of thumb: " & _GUIScrollBars_GetScrollBarXYThumbBottom($hGUI, $OBJID_HSCROLL) & @CRLF)

    MemoWrite("Vertical" & @CRLF & "--------------------------------------")
    MemoWrite("Top of thumb: " & _GUIScrollBars_GetScrollBarXYLineButton($hGUI, $OBJID_VSCROLL))
    MemoWrite("Bottom of thumb: " & _GUIScrollBars_GetScrollBarXYThumbBottom($hGUI, $OBJID_VSCROLL))

    While 1
        $GUIMsg = GUIGetMsg()

        Switch $GUIMsg
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd

    Exit
EndFunc   ;==>_Main

; メモコントロールに1行書き込み
Func MemoWrite($sMessage)
    GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite