pycatia.cat_str_functional_interfaces.sfm_weld

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_weld.SFMWeld(com_object)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
SfmWeld

Interface to manage the Structure Functional Modeler Weld
object.
Role: Provides access to each Weld object’s attributes.
property added_material: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property AddedMaterial() As CATBSTR (Read Only)

Gets Added Material.

Parameters:

oAddedMaterial
[out] The retrieved Added Material.

Returns:
S_OK if everything ran ok.

Example:
This example gets Weld Feature.

Dim EachWeld As SfmWeld
ustrAddedMaterial = EachWeld.AddedMaterial
Next
Return type:

str

property edge_preparation: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property EdgePreparation() As CATBSTR (Read Only)

Gets Edge Preparation.

Parameters:

oEdgePreparation
[out] The retrieved Edge Preparation.

Returns:
S_OK if everything ran ok.

Example:
This example gets Weld Feature.

Dim EachWeld As SfmWeld
ustrEdgePrep = EachWeld.EdgePreparation
Next
Return type:

str

property fit_up: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property FitUp() As CATBSTR (Read Only)

Gets Fit Up.

Parameters:

oFitUp
[out] The retrieved Fit Up.

Returns:
S_OK if everything ran ok.

Example:
This example gets Weld Feature.

Dim EachWeld As SfmWeld
ustrFitUp = EachWeld.FitUp
Next
Return type:

str

property weld_type: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property WeldType() As CATBSTR (Read Only)

Gets Weld Type.

Parameters:

oWeldType
[out] The retrieved Weld Type.

Returns:
S_OK if everything ran ok.

Example:
This example gets Weld Feature.

Dim ListWelds As SfmWelds
Set ListWelds = SplitPlate.GetWelds(Nothing)
Dim WeldFeature As SfmWeld
Set WeldFeature = ListWelds.Item(1)
Dim EachWeld As SfmWeld
ustrWeldType = EachWeld.WeldType
Next
Return type:

str