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

Tag Property
Hash Table Class

Public Property Get Tag( _
    ) As Variant

Return the Tag of this HashTable.
The Tag may be any type of data.

Example:
    Assuming
       Dim htTemp As New HashTable
       htTemp.Tag = "Miscellaneous Information Here"
       Dim varTag As Variant
    for example
       varTag = htTemp.Tag
    leaves
       varTag = "Miscellaneous Information Here"
See also:
    Name Property

Public Property Let Tag( _
    ByVal vTag As Variant _
    )

Assign a Tag to this HashTable when the Tag is NOT an Object.

Example:
    Assuming
       Dim htTemp As New HashTable
    for example
       htTemp.Tag = "Miscellaneous Information Here"

Public Property Set Tag( _
    ByVal vTag As Object _
    )

Assign a Tag to this HashTable when the Tag IS an Object.

Example:
    Assuming
       Dim htTemp As New HashTable
    for example
       Set htTemp.Tag = Nothing

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