Function Reference

_GUICtrlListView_GetSubItemRect

アイテムの外接長方形の情報を取得します。

#Include <GuiListView.au3>
_GUICtrlListView_GetSubItemRect($hWnd, $iIndex, $iSubItem[, $iPart = 0])

 

パラメータ

$hWnd コントロールのハンドル
$iIndex サブアイテムの親アイテムのゼロ始まりのインデックス
$iSubItem サブアイテムの1始まりのインデックス
$iPart [オプション]取得するサブアイテムの部分:
0 - アイコン、ラベルを含めたサブアイテム全体の長方形
1 - アイコン、スモールアイコンの長方形

 

返し値

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

 

注意

この関数は$LVS_REPORTスタイルを使用しているコントロールにのみ使用できます。

 

関連

 


#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 $aRect, $hListView
   
    GUICreate("ListView Get SubItem Rect", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

    ; 列を追加
    _GUICtrlListView_AddColumn($hListView, "Column 1", 100)
    _GUICtrlListView_AddColumn($hListView, "Column 2", 100)
    _GUICtrlListView_AddColumn($hListView, "Column 3", 100)

    ; アイテムを追加
    _GUICtrlListView_AddItem($hListView, "Row 1: Col 1")
    _GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 2", 1)
    _GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 3", 2)
    _GUICtrlListView_AddItem($hListView, "Row 2: Col 1")
    _GUICtrlListView_AddSubItem($hListView, 1, "Row 2: Col 2", 1)
    _GUICtrlListView_AddItem($hListView, "Row 3: Col 1")

    ; アイテム2のサブアイテム長方形を表示
    $aRect = _GUICtrlListView_GetSubItemRect($hListView, 1, 1)
    MsgBox(4160, "Information", StringFormat("Subitem Rectangle : [%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))

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