函数参考


_GUICtrlListView_GetViewRect

检索控件全部项目的边界矩形

#Include <GuiListView.au3>
_GUICtrlListView_GetViewRect($hWnd)

参数

$hWnd 控件句柄

返回值

返回如下格式数组:
[0] - 矩形左上角 X 坐标
[1] - 矩形左上角 Y 坐标
[2] - 矩形右下角 X 坐标
[3] - 矩形右下角 Y 坐标

注意/说明

 该控制必须是图标或小图标视图

相关

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiListView.au3>

$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $aRect, $hListView

    GUICreate("ListView Get View Rect", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
    GUISetState()

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

    ; 添加项目
    _GUICtrlListView_BeginUpdate($hListView)
    For $iI = 1 To 10
        _GUICtrlListView_AddItem($hListView, "Item " & $iI)
    Next
    _GUICtrlListView_EndUpdate($hListView)

    ; Set view
    _GUICtrlListView_SetView($hListView, 3)

    ; Get view rectangle
    $aRect = _GUICtrlListView_GetViewRect($hListView)
    MsgBox(4160, "信息", StringFormat("View Tile: [%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main