SfmWelds (Object)

Interface to manage the Structure Functional Modeler Weld object's collection.
Role: Provides access to Weld objects as a collection.

Methods


Func Item( iIndex) As
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