Hide Table of Contents

Extract Configuration-Specific Parameters Example (VBA)

This example shows how to extract and list all configuration-specific parameters from a model.

 

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

'

' Problem:

'       Configurations are a means of modeling families of parts and assemblies,

'       or to describing different arrangements of the same part or assembly.

'       Configurations are powerful and flexible, but this comes

'       at a cost of managing the configurations. Typically,

'       document management systems do not handle configurations

'       well. Furthermore, company practices may have to be revised to allow

'       for configurations in the design process.

'

'       Typically, a configuration is a collection of dimensions and

'       features, each having a value specific to a configuration.

'       A dimension usually has a value whereas a feature

'       usually has a suppression state. The configuration is stored

'       inside the SolidWorks file as an Excel spreadsheet. There may also

'       be other types of items and the interpretation of these will be up

'       to the Excel spreadsheet.

'

'       This code shows how to extract and list all the parameters and their

'       values from a model.

'

' Preconditions: Part or assembly is open.

'

' Postconditions:

'       None

'

' NOTES:

'       (1) Currently, configurations are supported in parts

'           and assemblies only; they are not supported in drawings.

'       (2) All parameters and their values are returned as strings. It

'           is up to the application to interpret the meaning of each

'           parameter and perform the appropriate conversion.

'

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

 

Option Explicit

Sub main()

    Dim swApp                   As SldWorks.SldWorks

    Dim swModel                 As SldWorks.ModelDoc2

    Dim swConfigMgr             As SldWorks.ConfigurationManager

    Dim vConfName               As Variant

    Dim vConfParam              As Variant

    Dim vConfValue              As Variant

    Dim i                       As Long

    Dim j                       As Long

    Dim bRet                    As Boolean

    Set swApp = Application.SldWorks

    Set swModel = swApp.ActiveDoc

    Set swConfigMgr = swModel.ConfigurationManager

    

    Debug.Print "File = " + swModel.GetPathName

    

    vConfName = swModel.GetConfigurationNames

    For i = 0 To UBound(vConfName)

        bRet = swConfigMgr.GetConfigurationParams(vConfName(i), vConfParam, vConfValue)

        Debug.Assert bRet

        

        Debug.Print "  Config       = " & vConfName(i)

        If Not IsEmpty(vConfParam) Then

            For j = 0 To UBound(vConfParam)

                Debug.Print "    " & vConfParam(j) & " = " & vConfValue(j)

            Next j

        End If

    Next i

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:   Extract Configuration-Specific Parameters 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) 2010 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.