描述
返回一个数组,其中包含有 Dictionary 对象中的所有项目。
语法
object.Items
object 应为 Dictionary 对象的名称。
说明
以下代码明例说明如何使用 Items 方法:
Dim a,d,i '创建一些变量
Set d = CreateObject("Scripting.Dictionary")
d.Add "a","Athens" '添加键和项目
d.Add "b","Bedgrade"
d.Add "c","Cdiro"
a = d.Items '获取项目
For i = 0 To d.Count -1 '循环使用数组
项 Print a(i) '打印项目
Next
...