Provides access to a particular item in a collection
Member of Files property (PRIM_VDEO.Files)
Data Type - PRIM_VDEO.File - Video File
Name | Type | Data Type | Description |
---|---|---|---|
Index | *Input | Integer | Index parameter identifies the item in the collection |
Reference to an item in the collection accesible via the value supplied in the Index parameter.
Accessing the third item in the collection via the Item property
#Reference <= #Videos.Item<3>
However, as Item is the default property of the collection, there is no need to specify it on the command.
#Reference <= #Videos<3>
Febuary 18 V14SP2