hCollection = NEW Collection ( [ Mode AS Integer ] )
Creates a new Collection.
The Mode
argument indicates how to compare keys. It is a combination of the following constants :
gb.Binary
to specify a binary comparison. This is the default.
gb.Text
to specify a case insensitive comparison.
Variant = hCollection [ Key AS String ] AS Variant
Returns an element of the collection from its key.
hCollection [ Key AS String ] = Variant
Modifies an element of the collection. If nothing was associated with the key, the association is created. If the value associated with the key is NULL, then the association is removed.