Function Reference

_GUICtrlListView_GetSelectedIndices

選択されたアイテムのインデックスを取得します。

#Include <GuiListView.au3>
_GUICtrlListView_GetSelectedIndices($hWnd, $fArray = False)

 

パラメータ

$hWnd コントロールのハンドル
$fArray 文字列または配列のどちらを返すかを指定します
True - 配列を返します
False - "|" で区切られた文字列を返します

 

返し値

成功: $fArrayに基づいて選択されているインデックスを返します:
配列 - 次のフォーマットです
[0] - 配列内のアイテムの数 (n)
[1] - 1番目のアイテムのインデックス
[2] - 2番目のアイテムのインデックス
[n] - 最後のアイテムのインデックス
文字列 - 次のフォーマットです
"0|1|2|n"
失敗: $fArrayに基づきます
配列 - 次のフォーマットです
[0] - 配列内のアイテムの数 (0)
文字列 - 空文字列 ("")

 

注意

なし。

 

関連

 


#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 $hListView
   
    GUICreate("ListView Get Selected Indices", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268, BitOR($LVS_SHOWSELALWAYS, $LVS_REPORT))
    GUISetState()

    ; 列を追加
    _GUICtrlListView_AddColumn($hListView, "Column 1", 100)

    ; アイテムを追加
    _GUICtrlListView_AddItem($hListView, "Item 1")
    _GUICtrlListView_AddItem($hListView, "Item 2")
    _GUICtrlListView_AddItem($hListView, "Item 3")

    ; 複数のアイテムを選択
    _GUICtrlListView_SetItemSelected($hListView, 1)
    _GUICtrlListView_SetItemSelected($hListView, 2)
    MsgBox(4160, "Information", "Selected Indices: " & _GUICtrlListView_GetSelectedIndices($hListView))

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