Hide Table of Contents

Delete a Smart Feature Example (VBA)

This example shows how to delete a feature from a Smart Component.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Open:
'    install_dir\samples\tutorial\api\holeCube.sldprt.
' 2. The Features folder of the Smart Feature contains two extrusion features.
'
' Postconditions: One extrusion feature is deleted from the Features folder
' of the Smart Feature.
'
' NOTE: Because the model is used elsewhere,
' do not save changes when closing it.
' ---------------------------------------------------------------------------

Dim swApp As SldWorks.SldWorks
Dim featMgr As SldWorks.FeatureManager
Dim myFeature As SldWorks.Feature
Dim swTrainAss As SldWorks.ModelDoc2
Dim swSmartPart As SldWorks.ModelDoc2
Dim swSCFD As SldWorks.SmartComponentFeatureData
Dim selMgr As SldWorks.SelectionMgr
Dim feat As SldWorks.Feature
Dim feats As Variant
Dim obj As Object
Dim i As Long
Dim count As Long
Dim boolstatus As Boolean

Option Explicit
Sub main()

    Set swApp = Application.SldWorks
    Set swSmartPart = swApp.ActiveDoc
    Set featMgr = swSmartPart.FeatureManager
    feats = featMgr.GetFeatures(True)
    count = featMgr.GetFeatureCount(True)
   

    For i = 0 To count - 1
        Set myFeature = feats(i)
        If myFeature.Name = "Smart Feature" Then
            Debug.Print myFeature.Name
            Set swSCFD = myFeature.GetDefinition
           

            ' Open the training assembly of the Smart Component
            ' Open the SmartComponent PropertyManager page to access its selection lists
            boolstatus = swSCFD.AccessSelections(True):
           

            Set swTrainAss = swApp.ActiveDoc
            Set selMgr = swTrainAss.SelectionManager
          

            Debug.Print "Number of features: " & selMgr.GetSelectedObjectCount2(swSmartComponentFeatures)
            Debug.Print "Number of components: " & selMgr.GetSelectedObjectCount2(swSmartComponentComponents)
                   

            ' Get the first extrusion from the features selection list
            Set obj = selMgr.GetSelectedObject6(1, swSmartComponentFeatures)
            Set feat = obj
                   

            ' To delete an extrusion feature from a Smart Component,
            ' re-select it in the Smart Features selection list
            boolstatus = feat.Select2(True, swSmartComponentFeatures)
                   

            ' Modify the definition of the Smart Feature,
            ' close the training assembly, and rebuild the Smart Component
            boolstatus = myFeature.ModifyDefinition(swSCFD, swSmartPart, Nothing)
        End If
    Next
 

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:   Delete a Smart Feature 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) 2012 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.