Hide Table of Contents

Deselect Marked Entity Example (VBA)

This example shows how to deselect a previously selected and marked entity.

'-----------------------------------------
' Preconditions:
' 1. Ensure that the file to open exists.
' 2. Open the Immediate window.
' 3. Run the macro.
'
' Postconditions:
' 1. The Base-Extrude feature is selected.
' 2. Examine the graphics area to verify.
' 3. Press F5 to continue.
' 4. The Base-Extrude feature is deselected.
' 5. Examine the Immediate window and graphics
'    area to verify.
'-----------------------------------------
Option Explicit
Dim swApp                   As SldWorks.SldWorks
Dim swModel                 As SldWorks.ModelDoc2
Dim swDocSpecification      As SldWorks.DocumentSpecification
Dim swSelMgr                As SldWorks.SelectionMgr
Dim swModelExt              As SldWorks.ModelDocExtension
Dim bRet                    As Boolean
Dim lMark                   As Long
Dim lMarkedIdx              As Long
Dim lNumMarkedSelections    As Long
Dim lNumAllSelections       As Long
Sub main()
Set swApp = Application.SldWorks
    ' Open the document
    Set swDocSpecification = swApp.GetOpenDocSpec("C:\Program Files\SOLIDWORKS Corp\SOLIDWORKS\samples\tutorial\swutilities\bracket_a.sldprt")
    Set swModel = swApp.ActiveDoc
    If swModel Is Nothing Then
        Set swModel = swApp.OpenDoc7(swDocSpecification)
    End If
    
    Set swSelMgr = swModel.SelectionManager
    Set swModelExt = swModel.Extension
    ' Select the Base-Extrude feature and mark with a value of 8
    bRet = swModelExt.SelectByID2("Base-Extrude", "BODYFEATURE", 0, 0, 0, False, 8, Nothing, swSelectOptionDefault)
    
    Stop
    ' Examine the part to verify that Base-Extrude was selected
    ' Press F5 to continue
    
    ' Look for a given mark value
        lMark = 8
        ' Get the number of marked selections
        lNumMarkedSelections = swSelMgr.GetSelectedObjectCount2(lMark)
        Debug.Print "Number of marked selections = " & lNumMarkedSelections
    
        ' Get the total number of selections
        lNumAllSelections = swSelMgr.GetSelectedObjectCount2(-1)
        Debug.Print "Number of selections        = " & lNumAllSelections
    
        Debug.Print " "
    
         'Deselect the marked selection
         For lMarkedIdx = 1 To lNumAllSelections
            Debug.Print ("Selected object #" & lMarkedIdx & " deselected? " & swSelMgr.DeSelect2(lMarkedIdx, lMark))
         Next lMarkedIdx

         ' Examine the graphics area to verify that Base-Extrude is deselected
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:   Deselect Marked Entity 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) 2015 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.