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

Compare Property
Hash Table Class

Public Property Get Compare( _
    ) As VbCompareMethod

Get the current value of the Compare property.
The Compare property specifies the type of comparisons used to determine if string Keys match.

Example:
    Assuming
       Dim htTemp As New HashTable
       Dim vbcmCur As VbCompareMethod
    for example
       vbcmCur = htTemp.Compare
    leaves
       vbcmCur = vbBinaryCompare
Return value: Type of comparisons used to determine if string Keys match.
See also:
    VbCompareMethod Enumeration (Visual Basic)

Public Property Let Compare( _
    ByVal vCompare As VbCompareMethod _
    )

Set the current value of the Compare property.

Example:
    Assuming
       Dim htTemp As New HashTable
    for example
       htTemp.Compare = vbTextCompare
vCompare: Type of comparisons used to determine if string Keys match.
Note: The Compare property defaults to Binary comparisons (vbBinaryCompare) when new instances of this class are created.

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