函数参考


_GUICtrlListView_GetColumnCount

返回列数

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

参数

$hWnd 控件句柄.

返回值

返回列数

注意/说明

None.

相关

示例/演示


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

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

_Main()

Func _Main()
    Local $hListView

    GUICreate("ListView Get Column Count", 400, 300)
    $hListView = GUICtrlCreateListView("col1|col2|col3", 2, 2, 394, 268)
    GUISetState()

    MsgBox(4160, "信息", "Column Count: " & _GUICtrlListView_GetColumnCount($hListView))

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

    GUIDelete()
EndFunc   ;==>_Main