Methods
- Func Add() As
- Adds a new shooting to the shootings collection.
- Func Item( iIndex) As
-
Returns a renderingshooting index in the renderingshootings collection.
- Parameters:
-
- iIndex
- The index of the shooting to retrieve in the collection of shootings. Compared with other collections, you cannot use the name of the shooting as argument. dd>
- Returns:
- The retrieved shooting
- Example:
-
The following example returns in MyShooting the sixth
shooting in a shootings collection.
Dim MyShooting As RenderingShooting Set MyShooting = RenderingShootings.Item(6)
dd>