Methods
- Func Add() As
- Adds a new light to the lights collection.
- Func Item( iIndex) As
-
Returns a rendering light index in the rendering light collection.
- Parameters:
-
- iIndex
- The index of the light to retrieve in the collection of lights. Compared with other collections, you cannot use the name of the light as argument. dd>
- Returns:
- The retrieved light
- Example:
-
The following example returns in MyLight the sixth
light in a lights collection.
Dim MyLight As RenderingLight Set MyLight = RenderingLights.Item(6)
dd>