 Item - default, indexed
          property - retrieves an item from the collection by its key.
 Item - default, indexed
          property - retrieves an item from the collection by its key.
           Count - returns the items count.
 Count - returns the items count.
           ItemByIndex - indexed
          property - retrieves an item by its numeric 1-based index in collection.
 ItemByIndex - indexed
          property - retrieves an item by its numeric 1-based index in collection.
           _NewEnum
          - returns IEnumVariant interface. Standard property required to implement collection
          enumeration - never referred directly in the scripts. The returned enumerator contains the
          item's key values not the items themself!
 _NewEnum
          - returns IEnumVariant interface. Standard property required to implement collection
          enumeration - never referred directly in the scripts. The returned enumerator contains the
          item's key values not the items themself!
        
        
           Add - Adds new object to the end
          of collection.
 Add - Adds new object to the end
          of collection.
           Clear - Removes all items from
          collection.
 Clear - Removes all items from
          collection.
           Remove - Removes an item
          specified by its key.
 Remove - Removes an item
          specified by its key.
           RemoveByItem - Removes an
          item specified by the item's itself.
 RemoveByItem - Removes an
          item specified by the item's itself.
           RemoveByIndex - Removes
          an item specified by its numeric 1-based index in collection.
 RemoveByIndex - Removes
          an item specified by its numeric 1-based index in collection.
           GetItemIndex - Evaluates
          the numeric index of an item specified by ite key.
 GetItemIndex - Evaluates
          the numeric index of an item specified by ite key.
           GetItemKey - Evaluates the
          key of an item specified by the item itself.
 GetItemKey - Evaluates the
          key of an item specified by the item itself.