アイテムの属性を取得します。
#Include <GuiListView.au3>
_GUICtrlListView_GetItem($hWnd, $iIndex[, $iSubItem = 0])
パラメータ
$hWnd | コントロールのハンドル |
$iIndex | ゼロ始まりのアイテムインデックス |
$iSubItem | [オプション]1始まりのサブアイテムのインデックス |
返し値
次のフォーマットの配列を返します。
注意
なし。
関連
_GUICtrlListView_SetItem, _GUICtrlListView_GetItemEx
例
#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, $hListView
GUICreate("ListView Get Item", 400, 300)
$hListView = GUICtrlCreateListView("Items", 2, 2, 394, 268)
GUISetState()
GUICtrlCreateListViewItem("Row 1", $hListView)
GUICtrlCreateListViewItem("Row 2", $hListView)
GUICtrlCreateListViewItem("Row 3", $hListView)
; アイテム2のテキストを表示
$aItem = _GUICtrlListView_GetItem($hListView, 1)
MsgBox(4160, "Information", "Item 2 Text: " & $aItem[3])
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main