Methods
- Func Add( iEnvironmentType) As
-
Adds a new environment to the environments collection.
- Parameters:
-
- iEnvironmentType
- The type of the environment to create choosen among:
- 1
- For cubical environment
- 2
- For spherical environment
- 3
- For cylindrical environment
- Func Item( iIndex) As
-
Returns an environment index in the environments collection.
- Parameters:
-
- iIndex
- The index of the environment to retrieve in the collection of environments. Compared with other collections, you cannot use the name of the environment as argument. dd>
- Returns:
- The retrieved environment
- Example:
-
The following example returns in MyEnvironment the sixth
environment in a environment collection.
Dim MyEnvironment As RenderingEnvironment Set MyEnvironment = RenderingEnvironments.Item(6)
dd>