SfmWeld (Object)

Interface to manage the Structure Functional Modeler Weld object.
Role: Provides access to each Weld object's attributes.

Properties


Property AddedMaterial() As (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
 
Property EdgePreparation() As (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
 
Property FitUp() As (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
 
Property WeldType() As (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