Function Reference

_GUICtrlListBox_ClickItem

アイテムをクリックします。

#Include <GuiListBox.au3>
_GUICtrlListBox_ClickItem($hWnd, $iIndex[, $sButton = "left"[, $fMove = False[, $iClicks = 1[, $iSpeed = 0]]]])

 

パラメータ

$hWnd コントロールのハンドル
$iIndex アイテムのゼロ始まりのインデックスを指定します
$sButton [オプション]クリックに使用するボタン
$fMove [オプション]Trueの場合、マウスが移動します。Falseの場合、マウスは移動しません。
$iClicks [オプション]クリック回数
$iSpeed [オプション]マウスの移動スピード

 

返し値

なし。

 

注意

なし。

 

関連

 


#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>

Opt('MustDeclareVars', 1)

$Debug_LB = False ; ListBox関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hListBox

    ; GUIを作成
    GUICreate("List Box Click Item_GUICtrlListBox_ClickItem", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296)
    GUISetState()

    ; 文字列を追加
    _GUICtrlListBox_BeginUpdate($hListBox)
    For $iI = 1 To 9
        _GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1)))
    Next
    _GUICtrlListBox_EndUpdate($hListBox)

    ; アイテムをクリック
    _GUICtrlListBox_ClickItem($hListBox, 4, "left", True)

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