Function Reference

_GUICtrlListView_GetItemRect

アイテムの一部または全体の外接長方形を取得します。

#Include <GuiListView.au3>
_GUICtrlListView_GetItemRect($hWnd, $iIndex[, $iPart = 3])

 

パラメータ

$hWnd コントロールのハンドル
$iIndex アイテムのゼロ始まりのインデックス
$iPart [オプション]取得するアイテムの部分:
0 - アイテム全体の外接長方形
1 - アイコンまたはスモールアイコンの外接長方形
2 - アイテムテキストの外接長方形
3 - 1と2の組み合わせです。ただしレポート表示での列は除きます。

 

返し値

次のフォーマットの配列を返します。
        [0] - 長方形の左上隅のX座標
        [1] - 長方形の左上隅のY座標
        [2] - 長方形の右下隅のX座標
        [3] - 長方形の右下隅のY座標

 

注意

なし。

 

関連

_GUICtrlListView_GetItemRectEx

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
#include <WindowsConstants.au3>

Opt('MustDeclareVars', 1)

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

_Main()

Func _Main()
    Local $aRect, $hListView
   
    GUICreate("ListView Get Item Rectangle", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

    ; 列を追加
    _GUICtrlListView_AddColumn($hListView, "Items", 100)

    ; アイテムを追加
    _GUICtrlListView_AddItem($hListView, "Item 1")
    _GUICtrlListView_AddItem($hListView, "Item 2")
    _GUICtrlListView_AddItem($hListView, "Item 3")

    ; アイテム2の長方形を取得
    $aRect = _GUICtrlListView_GetItemRect($hListView, 1)
    MsgBox(4160, "Information", StringFormat("Item 2 Rectangle : [%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))

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