You can create a blank collection and add items (CollectionItem) to it with the Add method, or by using the Value property of the CollectionItem object. You can also create a populated collection by using wildcards.
To create a collection in Softimage, you can use CreateObject (a VBScript command) to create a generic XSICollection object:
' Create XSI.Collection object Set oCollection = CreateObject( "XSI.Collection" )
To add an item to a collection, use the collection's Add method. For example, if oCollection is a collection:
oCollection.Add "CameraInterest"
Except where otherwise noted, this work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License