リストビューアイテムの全テキストを取得します。
#Include <GuiListView.au3>
_GUICtrlListView_GetItemTextArray($hWnd[, $iItem = -1])
パラメータ
$hWnd | コントロールのハンドル |
$iItem | [オプション]取得するアイテムのゼロ始まりのインデックス |
返し値
成功: | 次のフォーマットの配列: |
[0] - 配列内の列数 (n) | |
[1] - 1番目の列のインデックス | |
[2] - 2番目の列のインデックス | |
[n] - 最後の列のインデックス | |
失敗: | 次のフォーマットの配列: |
[0] - 配列内の列数 (0) |
注意
$iItem = -1の場合は現在選択されているアイテムを取得しようとします。
関連
_GUICtrlListView_SetItemText, _GUICtrlListView_GetItemText, _GUICtrlListView_GetItemTextString
例
#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 $aItem, $sText, $hListView
GUICreate("ListView Get Item Text Array", 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()
; アイテム2のテキストを取得
$aItem = _GUICtrlListView_GetItemTextArray($hListView, 1)
For $i = 1 To $aItem[0]
$sText &= StringFormat("Column[%2d] %s", $i, $aItem[$i]) & @LF
Next
MsgBox(4160, "Information", "Item 2 (All Columns) Text: " & @LF & @LF & $sText)
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main