Collection Object
All collections in the application use the following syntax and methods
Syntax
Item = Object.Collection(key|index)
Parameters
  - key
  
 - The identifier for the item to return.
   - index
  
 - An index offset indicating which item in the list to return. The index
    starts at 0
 
Return Value
  - A Variant that contains the value stored in the collection. The Variant
    can be of any type.
 
Properties
  
    
      | Count | 
      Returns the number of items in the collection. | 
    
  
Methods
  
    
      | Remove | 
      Deletes an item from the collection. | 
    
    
      | RemoveAll | 
      Deletes all items from the collection. | 
    
    
      | Add | 
      Add an item to the collection. |