Function Reference

_GUICtrlListBox_SetSel

複数選択できるリストボックス内の文字列を選択します。

#Include <GuiListBox.au3>
_GUICtrlListBox_SetSel($hWnd[, $iIndex = -1[, $fSelect = -1]])

 

パラメータ

$hWnd コントロールのハンドル
$iIndex [オプション]アイテムのゼロ始まりのインデックスを指定します
$fSelect [オプション]選択するか、選択解除するかを指定します

 

返し値

成功: True
失敗: False

 

注意

$iIndexが-1の場合、全てのアイテムの選択/非選択が切り替わります($fSelectは無視されます)。

 

関連

_GUICtrlListBox_GetSel

 


#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 Sel", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($LBS_STANDARD, $LBS_EXTENDEDSEL))
    GUISetState()

    ; 文字列を追加
    _GUICtrlListBox_BeginUpdate($hListBox)
    For $iI = 1 To 9
        _GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1)))
    Next
    _GUICtrlListBox_EndUpdate($hListBox)

    ; いくつかアイテムを選択
    _GUICtrlListBox_SetSel($hListBox, 3)
    _GUICtrlListBox_SetSel($hListBox, 4)
    _GUICtrlListBox_SetSel($hListBox, 5)

    ; アイテムの選択状態を表示
    MsgBox(4160, "Information", "Item 5 Selected: " & _GUICtrlListBox_GetSel($hListBox, 4))

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