pycatia.cat_str_functional_interfaces.sfm_welds

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.cat_str_functional_interfaces.sfm_welds.SFMWelds(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
SfmWelds

Interface to manage the Structure Functional Modeler Weld object’s
collection.
Role: Provides access to Weld objects as a collection.
item(i_index: cat_variant) SFMWeld

Note

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

Gets Weld Feature.

Parameters:

iIndex
[in] Index of the Weld Feature to be retrieved.
oSfmWeld
[out] The retrieved Weld Feature.

Returns:
S_OK if everything ran ok

Example:
This example gets Weld Feature.

Dim Welds As SfmWelds
Set Welds = Split_Plate.GetWelds(Nothing)
Dim j As Integer
For j = 1 To Welds.Count
Dim EachWeld As SfmWeld
Set EachWeld = Welds.Item(j)
Next
Parameters:

i_index (cat_variant) –

Return type:

SFMWeld