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. dd>
- Returns:
-
S_OKif 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. dd>
- Returns:
-
S_OKif 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. dd>
- Returns:
-
S_OKif 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. dd>
- Returns:
-
S_OKif 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