Hide Table of Contents

Create a Structural-Member Group Example (VBA)

This example shows how to create structural-member groups for weldment features.

' ---------------------------------------------------------------------
' Preconditions:
' 1. Ensure that the specified weldment profile and path exist.
' 2. If necessary, modify the path in both calls to
'    InsertStructuralWeldment3.
'
' Postconditions:
' 1. Two structural-member features are created.
' 2. Each feature consists of one structural-member group of two
'    sketch segments.
' 3. Inspect the Immediate Window for information.
'----------------------------------------------------------------------

Dim swApp As SldWorks.SldWorks

Dim Part As ModelDoc2

Dim boolstatus As Boolean

Dim FeatMgr As FeatureManager

Dim SelMgr As SelectionMgr

Dim swWeldFeat As SldWorks.Feature

Dim swWeldFeatData As SldWorks.StructuralMemberFeatureData

Option Explicit

Public Sub Main()

    Set swApp = Application.SldWorks

    

    Dim MacroFolder As String

    MacroFolder = swApp.GetCurrentMacroPathFolder()

    swApp.SetCurrentWorkingDirectory MacroFolder

     

    Dim Template As String

    Template = swApp.GetUserPreferenceStringValue(swDefaultTemplatePart)

    Set Part = swApp.NewDocument(Template, 0, 0, 0)

    Set FeatMgr = Part.FeatureManager

    Set SelMgr = Part.SelectionManager

    

    Part.ClearSelection2 True

    Dim vSkLines As Variant

    vSkLines = Part.SketchManager.CreateCornerRectangle(-0.1872393706766, 0.1133237194389, 0, -0.07003610048208, 0.009188409684237, 0)

    Part.ClearSelection2 True

    vSkLines = Part.SketchManager.CreateCornerRectangle(0.06513561531715, 0.03369083550887, 0, 0.1807053904567, -0.08106219210316, 0)

    Part.ClearSelection2 True

    Part.SketchManager.InsertSketch True

    

    Part.ViewZoomtofit2

    

    Dim myFeature As Object

    Set myFeature = Part.FeatureManager.InsertWeldmentFeature()

    

    Dim Group1 As StructuralMemberGroup

    Set Group1 = FeatMgr.CreateStructuralMemberGroup

    Dim vSeg1 As Variant

    Dim segments1(1) As Object

    Dim vGroups1 As Variant

    Dim GroupArray1(0) As Object

    boolstatus = Part.Extension.SelectByID2("Line1@Sketch1", "EXTSKETCHSEGMENT", -0.1495427140733, 0.1133237194389, 0, False, 0, Nothing, 0)

    boolstatus = Part.Extension.SelectByID2("Line2@Sketch1", "EXTSKETCHSEGMENT", -0.1872393706766, 0.08238014634844, 0, True, 0, Nothing, 0)

    

    Set segments1(0) = SelMgr.GetSelectedObject6(1, 0)

    Set segments1(1) = SelMgr.GetSelectedObject6(2, 0)

    vSeg1 = segments1

    Group1.Segments = (vSeg1)

    Set GroupArray1(0) = Group1

    vGroups1 = GroupArray1

    

    Set myFeature = Part.FeatureManager.InsertStructuralWeldment3("C:\Program Files\SOLIDWORKS Corp\SOLIDWORKS\lang\english\weldment profiles\ansi inch\c channel\3 x 5.sldlfp", 1, 0, False, (vGroups1))

    Part.ClearSelection2 True

    

    Dim Group2 As StructuralMemberGroup

    Set Group2 = FeatMgr.CreateStructuralMemberGroup

    Dim vSeg2 As Variant

    Dim segments2(1) As Object

    Dim vGroups2 As Variant

    Dim GroupArray2(0) As Object

    

    boolstatus = Part.Extension.SelectByID2("Line5@Sketch1", "EXTSKETCHSEGMENT", 0.1185825251083, 0.03369083550887, 0, False, 0, Nothing, 0)

    boolstatus = Part.Extension.SelectByID2("Line6@Sketch1", "EXTSKETCHSEGMENT", 0.06513561531715, -0.02774616865332, 0, True, 0, Nothing, 0)

    Set segments2(0) = SelMgr.GetSelectedObject6(1, 0)

    Set segments2(1) = SelMgr.GetSelectedObject6(2, 0)

    vSeg2 = segments2

    Group2.Segments = (vSeg2)

    Set GroupArray2(0) = Group2

    vGroups2 = GroupArray2

   

    Set myFeature = Part.FeatureManager.InsertStructuralWeldment3("C:\Program Files\SOLIDWORKS Corp\SOLIDWORKS\lang\english\weldment profiles\ansi inch\c channel\3 x 5.sldlfp", 1, 0, False, (vGroups2))

    Part.ClearSelection2 True

    

    ' Get Group Information

    

    Dim Group As StructuralMemberGroup

    Dim vGroups As Variant

    Dim vSegments As Variant

    

    boolstatus = Part.Extension.SelectByID2("Structural Member1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)

    Set swWeldFeat = SelMgr.GetSelectedObject6(1, 0)

    

    Set swWeldFeatData = swWeldFeat.GetDefinition

    swWeldFeatData.AccessSelections Part, Nothing

    

    Debug.Print ""

    Debug.Print "Groups Count : " & swWeldFeatData.GetGroupsCount

    Debug.Print " Feature Name : " & swWeldFeat.Name

    

    vGroups = swWeldFeatData.Groups

    Dim i As Long, j As Long

        For i = LBound(vGroups) To UBound(vGroups)

           Set Group = vGroups(i)

            Debug.Print " Segment Count in Group " & i + 1 & "  : " & Group.GetSegmentsCount; ""

            Debug.Print " Rotational angle of group: " & Group.Angle

            vSegments = Group.Segments

            For j = LBound(vSegments) To UBound(vSegments)

                vSegments(j).Select False

            Next j

        Next i

        

    swWeldFeatData.ReleaseSelectionAccess

    

     boolstatus = Part.Extension.SelectByID2("Structural Member2", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)

    Set swWeldFeat = SelMgr.GetSelectedObject6(1, 0)

    

    Set swWeldFeatData = swWeldFeat.GetDefinition

    swWeldFeatData.AccessSelections Part, Nothing

    

    Debug.Print ""

    Debug.Print "Groups Count : " & swWeldFeatData.GetGroupsCount

    Debug.Print " Feature Name : " & swWeldFeat.Name

    

    vGroups = swWeldFeatData.Groups

        For i = LBound(vGroups) To UBound(vGroups)

           Set Group = vGroups(i)

            Debug.Print " Segment Count in Group " & i + 1 & "  : " & Group.GetSegmentsCount; ""

            Debug.Print " Rotational angle of group: " & Group.Angle

            vSegments = Group.Segments

            For j = LBound(vSegments) To UBound(vSegments)

                vSegments(j).Select False

            Next j

        Next i

        

    swWeldFeatData.ReleaseSelectionAccess

End Sub



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Create a Structural-Member Group Example (VBA)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2018 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.