Methods
- Func AddCopyScene( iName, iReferenceScene) As
-
Creates a scene from another and adds it to the Scenes collection.
- Parameters:
-
- iName
- The name of the scene dd>
- iReferenceScene
- The scene to be copied dd>
- Returns:
- The created scene dd>
- Example:
-
This example creates the Engine scene from the SpareWheel scene and adds the scene to the ToolKits collection.Dim Engine As Scene Set Engine = ToolKits.AddNewScene("Engine", SpareWheel)
- Func AddNewScene( iName, iReferenceProduct) As
-
Creates a scene from a product and adds it to the Scenes collection.
- Parameters:
-
- iName
- The name of the scene dd>
- iReferenceProduct
- The product used as reference dd>
- Returns:
- The created scene dd>
- Example:
-
This example creates the SpareWheel scene from the reference product FrontRightWheel and adds the scene to the ToolKits collection.Dim SpareWheel As Scene Set SpareWheel = ToolKits.AddNewScene("SpareWheel", FrontRightWheel)
- Sub Remove( iScene)
-
Removes a scene from the Scenes collection.
- Parameters:
-
- iScene
- The scene to remove. dd>
- Example:
-
This example removes the Engine scene from the ToolKits collection.ToolKits.Remove Engine