Function Reference

_GUICtrlListBox_UpdateHScroll

最も長い文字列にあわせて水平スクロールバーを更新します。

#Include <GuiListBox.au3>
_GUICtrlListBox_UpdateHScroll($hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

なし。

 

注意

なし。

 

関連

 


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

Opt('MustDeclareVars', 1)

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

_Main()

Func _Main()
    Local $aTabs[4] = [3, 100, 200, 300], $hListBox

    ; GUIを作成
    GUICreate("List Box Update HScroll", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($LBS_NOTIFY, $LBS_SORT, $WS_HSCROLL, $WS_VSCROLL))
    GUISetState()

    ; 長い文字列を追加
    _GUICtrlListBox_AddString($hListBox, "AutoIt v3 is a freeware BASIC-like scripting language designed for automating the Windows GUI.")

    ; 現在の水平方向範囲を表示
    MsgBox(4160, "Information", "Horizontal Extent: " & _GUICtrlListBox_GetHorizontalExtent($hListBox))

    ; 水平スクロールバーを調整
    _GUICtrlListBox_UpdateHScroll($hListBox)

    ; 現在の水平方向範囲を表示
    MsgBox(4160, "Information", "Horizontal Extent: " & _GUICtrlListBox_GetHorizontalExtent($hListBox))

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