描述
返回一數組,其中包含有 Dictionary 對象的所有現存鍵。
Syntax
object.Keys
object 應為 Dictionary 對象的名稱。
說明
下列代碼舉例說明如何使用 Keys 方法:
Dim a,d,i '創建一些變數
Set d = CreateObject("Scripting.Dictionary")
d.Add "a","Athens" '添加鍵和項目。
d.Add "b","Belgrade"
d.Add "c","Cairo"
a = d.keys '獲取鍵
For i = 0 To d.Count -1 '循環使用數組
Print a(i) '列印鍵
Next
...