Name
Dictionary.Items Method
Syntax
dictionaryobject.ItemsdictionaryobjectUse: Required
Data Type: Dictionary object
A reference to a Dictionary object.
Return Value
A Variant array.
Description
Returns an array containing all the items in the specified Dictionary object.
Rules at a Glance
The returned array is always a zero-based variant array whose data type matches that of the items in the Dictionary object.
Programming Tips and Gotchas
The only way to directly access members of the Dictionary is via their key values. However, using the Items method, you can “dump” the data from the Dictionary into a zero-based variant array. The data items can then be accessed like an array in the normal way, as the following code shows:
Dim vArray vArray = DictObj.Items For i = 0 to DictObj.Count -1 Response.Write vArray(i) & "<P>" Next IThe Items method retrieves only the items stored in a Dictionary object; you can retrieve all the Dictionary object’s keys by calling its Keys method.
See Also
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access