Hide Table of Contents

Get Block Definitions in Part or Assembly Example (VBA)

This example shows how to get all of the block definitions and their block instances in a part or assembly.

 

'-----------------------------

'

' Preconditions: Part document is open and contains at least

'               one block definition and block instance.

'

' Postconditions: All of the block instances in the part are selected.

'

'-----------------------------

Option Explicit

 

Dim swApp As SldWorks.SldWorks

Dim swModel As SldWorks.ModelDoc2

Dim skMgr As SldWorks.SketchManager

Dim swSelMgr As SldWorks.SelectionMgr

Dim selBlockInst As SldWorks.SketchBlockInstance

Dim pBlock As SldWorks.SketchBlockDefinition

Dim pInst As Object

Dim vBlocks As Variant

Dim vInstances As Variant

Dim itr As Long

Dim jtr As Long

Dim retval As Boolean

 

Sub main()

    Set swApp = Application.SldWorks

    Set swModel = swApp.ActiveDoc

    Set swSelMgr = swModel.SelectionManager

    

    Set skMgr = swModel.SketchManager

           

    vBlocks = skMgr.GetSketchBlockDefinitions

    

    ' Exit if no block definitions

    If IsEmpty(vBlocks) Then

        Exit Sub

    End If

    

    ' Process blocks instances

    For itr = 0 To UBound(vBlocks)

        Set pBlock = vBlocks(itr)

        vInstances = pBlock.GetInstances

        If False = IsEmpty(vInstances) Then

            For jtr = 0 To UBound(vInstances)

                Set pInst = vInstances(jtr)

                retval = pInst.Select(True, Nothing)

                Set selBlockInst = swSelMgr.GetSelectedObject6(1, -1)

            Next jtr

        End If

    Next itr

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:   Get Block Definitions in Part or Assembly 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) 2019 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.