pycatia.eno_cd5_interfaces.cd5_save_items

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.eno_cd5_interfaces.cd5_save_items.CD5SaveItems(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
CD5SaveItems

Represents a Collection of items which user is trying to save.

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:
CD5SaveOperation
item(i_index: cat_variant) CD5SaveItem

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Item(CATVariant iIndex) As CD5SaveItem

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)
Parameters:

i_index (cat_variant) –

Return type:

CD5SaveItem