函数参考


_GUICtrlListView_GetStringWidth

确定指定字符串的宽度

#Include <GuiListView.au3>
_GUICtrlListView_GetStringWidth($hWnd, $sString)

参数

$hWnd 控件句柄
$sString 计算宽度的字符串

返回值

成功: 返回字符串宽度
失败: 返回 0

注意/说明

 函数返回指定字符串的精确像素宽度.
 如果使用这个返回值作为 SetColumnWidth 函数中的列宽,字符串将被截断.
 若要检索列宽度不截断包含的字符串,你必须向返回的字符串宽度添加空白.

相关

示例/演示


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

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

_Main()

Func _Main()
    Local $hListView

    GUICreate("ListView Get String Width", 400, 300)
    $hListView = GUICtrlCreateListView("", 2, 2, 394, 268, BitOR($LVS_SHOWSELALWAYS, $LVS_REPORT))
    GUISetState()

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

    ; 添加项目
    _GUICtrlListView_AddItem($hListView, "Item 1")
    _GUICtrlListView_AddItem($hListView, "Item 2")
    _GUICtrlListView_AddItem($hListView, "Item 3")

    ; Get width of string
    MsgBox(4160, "信息", 'Width of "Test": ' & _GUICtrlListView_GetStringWidth($hListView, "Test"))

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