Function Reference

_GUICtrlListBox_SetColumnWidth

全ての列の幅をピクセル単位で設定します。

#Include <GuiListBox.au3>
_GUICtrlListBox_SetColumnWidth($hWnd, $iWidth)

 

パラメータ

$hWnd コントロールのハンドル
$iWidth 全ての列のピクセル単位での幅を指定します。

 

返し値

なし。

 

注意

$LBS_MULTICOLUMNスタイル設定で作成されたコントロールで使用できます。

 

関連

 


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

Opt('MustDeclareVars', 1)

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

_Main()

Func _Main()
    Local $hListBox

    ; GUIを作成
    GUICreate("List Box Set Column Width", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($LBS_STANDARD, $LBS_MULTICOLUMN))
    GUISetState()

    ; 列の幅を設定
    _GUICtrlListBox_SetColumnWidth($hListBox, 100)

    ; 文字列を追加
    _GUICtrlListBox_BeginUpdate($hListBox)
    For $iI = 1 To 50
        _GUICtrlListBox_AddString($hListBox, StringFormat("Item %03d", $iI))
    Next
    _GUICtrlListBox_EndUpdate($hListBox)

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