函数参考


_GUICtrlListView_GetItemTextString

检索指定项目及其子项的全部文本,返回分隔的字符串.(译注:依据示例脚本翻译)

#Include <GuiListView.au3>
_GUICtrlListView_GetItemTextString($hWnd[, $iItem = -1])

参数

$hWnd 控件句柄
$iItem [可选参数] 项目的 0 基索引
(译注:似乎不是[可选参数]而是必选参数,无此参数则返回数组仅有[0],其它为空)

返回值

成功: 返回分隔的字符串
失败: 返回空字符串

注意/说明

 如 $iItem = -1, 则获取当前选定项目的文本.

相关

_GUICtrlListView_SetItemText, _GUICtrlListView_GetItemText, _GUICtrlListView_GetItemTextArray

示例/演示


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

$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hListView

    GUICreate("ListView Get Item Text String", 400, 300)

    $hListView = GUICtrlCreateListView("col1|col2|col3", 2, 2, 394, 268)
    GUICtrlCreateListViewItem("line1|data1|more1", $hListView)
    GUICtrlCreateListViewItem("line2|data2|more2", $hListView)
    GUICtrlCreateListViewItem("line3|data3|more3", $hListView)
    GUICtrlCreateListViewItem("line4|data4|more4", $hListView)
    GUICtrlCreateListViewItem("line5|data5|more5", $hListView)
    GUISetState()

    MsgBox(4160, "信息", "Item 2 Text: " & @LF & @LF & _GUICtrlListView_GetItemTextString($hListView, 1))

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