<-- Previous || Up || Next -->

Keys And Items Property
Hash Table Class

Public Property Get KeysAndItems( _
    ) As Variant()

Return all of the Keys and Items in a two-dimensional Variant array.
The Keys are returned in element 0 of the 1st dimension, and the Items are returned in element 1 of the 1st dimension.
The 2nd dimension is dimensioned between 1 and Count.

Example:
    Assuming
       Dim htTemp As New HashTable
       htTemp.Add "SubName", 23
       htTemp.Add "FunctionName", 24
       Dim avarTemp() As Variant
    for example
       avarTemp = htTemp.KeysAndItems
    leaves
       avarTemp(0, 1) = "SubName"
       avarTemp(1, 1) = 23
       avarTemp(0, 2) = "FunctionName"
       avarTemp(1, 2) = 24
See also:
    Keys Property
    Items Property
v1.5 Addition: This property is new to version 1.5 of Entisoft Tools.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.