ItemCount is the number of items in a collection
Member of Collection (PRIM_COLL)
Data Type - Integer
The ItemCount property will return the number of items in the collection.
In this example, a collection is only allowed a maximum of 50 items.
If (#Collection.ItemCount <= 50) #Collection.insert(#Object) Endif
Febuary 18 V14SP2