Hide Table of Contents

Set and Get Sheet Metal Part's Persistent Reference IDs Example (VB.NET)

This example shows how to set and get persistent reference IDs on a sheet metal part.

The entities in flattened and unflattened (folded) states of sheet metal in SolidWorks do not have the same properties, making it difficult to track entities across states of sheet metal.

Together these methods provide a way to track entities across sheet metal states.

'------------------------------------------
' Preconditions:
' 1. Specified part document exists.
' 2. Open the Immediate window.
' 3. Run the macro.
'
' Postconditions:
' 1. Opens specified part document.
' 2. Unsuppresses the Flat-Pattern1 feature.
' 3. Gets the PIDs of the selected face on the
'    Flat-Pattern1 feature.
' 4. Prints the PIDs of the selected face to the
'    the Immediate window.
' 5. Suppresses the Flat-Pattern1 feature.
' 6. Uses the persistent reference IDs to
'    retrieve and highlight the array of objects
'    that comprise the previously selected face in the
'    folded state of the part.
'
NOTE: Because this part document is used elsewhere,
' do not save any changes when closing it.
'--------------------------------------------
 
Imports SolidWorks.Interop.sldworks
Imports SolidWorks.Interop.swconst
Imports System
Imports System.Diagnostics
 
Partial Class SolidWorksMacro
 
    Dim swModel As ModelDoc2
    Dim swModelDocExt As ModelDocExtension
    Dim swSelectionMgr As SelectionMgr
    Dim swFace As Face2
    Dim swSelectData As SelectData
    Dim pid As Object
    Dim FileName As String
    Dim selObj As Object
    Dim swObjList As Object
    Dim errors As Integer
    Dim warnings As Integer
    Dim boolstatus As Boolean
    Dim i As Integer
    Dim j As Integer
 
    Sub main()
 
        ' Open the specified sheet metal part
        FileName = "C:\Program Files\SolidWorks Corp\SolidWorks\samples\design portfolio\sheet_metal_bracket.sldprt"
        swModel = swApp.OpenDoc6(FileName, swDocumentTypes_e.swDocPART, swOpenDocOptions_e.swOpenDocOptions_Silent, "", errors, warnings)
 
        ' Get flat-pattern feature
        swModelDocExt = swModel.Extension
        boolstatus = swModelDocExt.SelectByID2("Flat-Pattern1""BODYFEATURE", 0, 0, 0, False, 0, Nothing, swSelectOption_e.swSelectOptionDefault)
 
        ' Unsuppress (unfold) flat-pattern feature
        boolstatus = swModel.EditUnsuppress2
 
        ' Select the top face on the flattened sheet metal part
        boolstatus = swModelDocExt.SelectByID2("""FACE", -0.00101040556784, 0.08553215906153, 0.001499999999965, False, 0, Nothing, 0)
        swSelectionMgr = swModel.SelectionManager
        swFace = swSelectionMgr.GetSelectedObject6(1, -1)
 
        ' Get the persistent reference IDs for the
        ' the selected face on the flattened sheet
        ' metal part
        pid = swModelDocExt.GetFlattenSheetMetalPersistReference(swFace)
 
        ' Print the PID values to the Immediate window
        j = 0
        For j = LBound(pid) To UBound(pid)
            Debug.Print("PID = " & pid(j))
        Next j
 
        ' Suppress (fold) flat-pattern feature
        boolstatus = swModelDocExt.SelectByID2("Flat-Pattern1""BODYFEATURE", 0, 0, 0, False, 0, Nothing, swSelectOption_e.swSelectOptionDefault)
        swModel.EditSuppress2()
 
        ' Use the persistent reference IDs to
        ' retrieve an array of objects that comprise 
        ' the previously select entity in the folded state of the part
        swObjList = swModelDocExt.GetSheetmetalObjectsByPersistReference((pid), errors)
        If Not swObjList Is Nothing Then
            swModel.ClearSelection2(True)
            For i = LBound(swObjList) To UBound(swObjList)
                selObj = swObjList(i)
                If selObj Is Nothing Then
                    Debug.Print("PID conversion error.")
                    Exit Sub
                Else
                    SelectObject(selObj, True)
                End If
            Next i
        End If
 
        Debug.Print("The entities that comprise the previously selected entity in the folded state are selected.")
 
    End Sub
 
    Private Sub SelectObject(ByVal selObj As ObjectByVal append As Boolean)
        If TypeOf selObj Is Entity Then
            swSelectData = swSelectionMgr.CreateSelectData
            selObj.Select4(append, swSelectData)
        Else
            Debug.Print("Need selection handle.")
        End If
 
    End Sub
    ''' <summary>
    ''' The SldWorks swApp variable is pre-assigned for you.
    ''' </summary>
    Public swApp As SldWorks
End Class
 
 


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:   Set and Get Sheet Metal Part's Persistent Reference IDs Example (VB.NET)
*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) 2013 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.