列の属性を設定します。
#Include <GuiListView.au3>
_GUICtrlListView_SetColumn($hWnd, $iIndex, $sText[, $iWidth = -1[, $iAlign = -1[, $iImage = -1[, $fOnRight = False]]]])
パラメータ
$hWnd | コントロールのハンドル |
$iIndex | 新しい列のゼロ始まりのインデックス |
$sText | 列のヘッダーテキスト |
$iWidth | [オプション]ピクセル単位での列の幅 |
$iAlign | [オプション]列のヘッダーと列内のサブアイテムのテキストの配置: 0 - 左揃え 1 - 右揃え 2 - 中央揃え |
$iImage | [オプション]画像リスト内の画像のゼロ始まりののインデックス |
$fOnRight | [オプション]Trueの場合、列用の画像はテキストの右側に表示されます。 |
返し値
成功: | True |
失敗: | False |
注意
なし。
関連
_GUICtrlListView_GetColumn, _GUICtrlListView_JustifyColumn
例
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
Opt('MustDeclareVars', 1)
$Debug_LV = False ; ListView関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用
_Main()
Func _Main()
Local $aInfo, $hListView
GUICreate("ListView Set Column", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
; 列を追加
_GUICtrlListView_AddColumn($hListView, "Column 1", 100)
_GUICtrlListView_AddColumn($hListView, "Column 2", 100)
_GUICtrlListView_AddColumn($hListView, "Column 3", 100)
; 列を変更
$aInfo = _GUICtrlListView_GetColumn($hListView, 0)
MsgBox(4160, "Information", "Column 1 Width: " & $aInfo[4])
_GUICtrlListView_SetColumn($hListView, 0, "New Column 1", 150, 1)
$aInfo = _GUICtrlListView_GetColumn($hListView, 0)
MsgBox(4160, "Information", "Column 1 Width: " & $aInfo[4])
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main