- Example:
-
The following example indicates how to retrieve the Collection of items to Save.
Dim oCD5Engine As CD5EngineV6R2014x Set oCD5Engine = CATIA.GetItem("CD5EngineV6R2014x") Dim oSaveOperation As CD5SaveOperation Set oSaveOperation = oCD5Engine.CreateSaveOperation(CD5SaveOperation_Session) Dim oSaveItems As CD5SaveItems Set oSaveItems = oSaveOperation.Items() - See also:
Methods
- Func Item( iIndex) As
-
Returns (gets) an item from the list of items in the current save scope.
First item is at index 1.
- Example:
-
The following example gets a SaveItem at index 1.
Dim oSaveItem As CD5SaveItem Set oSaveItem = oSaveItems.Item(1)