函数参考


_GUICtrlListView_GetSelectedIndices

检索选定项目的索引

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

参数

$hWnd 控件句柄
$fArray 返回字符串或数组
True - array
False - 返回 "|" 分隔的字符串

返回值

成功: 根据 $fArray 的设置返回:
数组 - 使用下面的格式
[0] - 项目数 (n)
[1] - 第一项目索引
[2] - 第二项目索引
[n] - 最后项目索引
字符串 - 使用下面的格式
"0|1|2|n"
失败: 根据 $fArray 的设置返回:
数组 - 使用下面的格式
[0] - 项目数 (0)
字符串 - 空 ("")

注意/说明

None.

相关

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiListView.au3>

$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为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")

    ; Select multiple items
    _GUICtrlListView_SetItemSelected($hListView, 1)
    _GUICtrlListView_SetItemSelected($hListView, 2)
    MsgBox(4160, "信息", "Selected Indices: " & _GUICtrlListView_GetSelectedIndices($hListView))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main