Count 属性

返回包含集合或 Dictionary 对象中的项数的 (长整数) 。 此为只读属性。

语法

对象计数

对象始终是“适用范围”列表中的其中一项的名称。

备注

以下代码演示了 Count 属性的用法。

Dim a, d, i             'Create some variables
Set d = CreateObject("Scripting.Dictionary")
d.Add "a", "Athens"     'Add some keys and items.
d.Add "b", "Belgrade"
d.Add "c", "Cairo"
a = d.Keys              'Get the keys
For i = 0 To d.Count -1 'Iterate the array
    Print a(i)          'Print key
Next
...

另请参阅

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。