Description
Calling target.hash_table.Count will count the number of indexes in the hash table.
Syntax
trg.hash_table.Count()
Return value
This function returns an integer with the number of indexes in the hash table.
Sample'---------- Start ----------Function StartDim table trg.hash_table.Add "a", 8 set table = trg.hash_table.Clone() trg.Message( table.Find( "a" ) ) End FunctionSee also
'---------- Start ----------
Function Start
Dim table
trg.hash_table.Add "a", 8
set table = trg.hash_table.Clone()
trg.Message( table.Find( "a" ) )
End Function