Hide Table of Contents

Get Number of Instances Skipped in Driving Feature Example (VBA)

This example shows how to get the number of instances skipped in the driving feature of a derived pattern feature.

'--------------------------------------------------------------------------------
' Preconditions:
' 1. Open public_documents\tutorial\api\PatternDrivenComponentPattern.sldasm.
' 2. Open the Immediate window.
'
' Postconditions:
' 1. Adds instances to skip in the local linear pattern feature.
' 2. Inserts a derived pattern feature.
' 3. Gets the number of instances skipped in the driving feature for the
'    derived pattern feature.
' 4. Gets whether visual properties are propagated in the derived pattern
'    feature.
' 5. Examine the FeatureManager design tree, graphics area, and
'    Immediate window.
'
' NOTE: Because the assembly is used elsewhere, do not save changes.
'--------------------------------------------------------------------------------
Option Explicit
    Dim SwApp As SldWorks.SldWorks
    Dim swModel As SldWorks.ModelDoc2
    Dim swAssemblyDoc as SldWorks.AssemblyDoc
    Dim swModelDocExt As SldWorks.ModelDocExtension
    Dim swSelectionMgr As SldWorks.SelectionMgr
    Dim swFeature As SldWorks.Feature
    Dim swLocalLinearPatternData As SldWorks.LocalLinearPatternFeatureData
    Dim swDerivedPatternFeatureData As SldWorks.DerivedPatternFeatureData
    Dim list(1) As Long
    Dim instancesSkipData As Variant
    Dim instancesSkipData_Derived As Variant
    Dim instancesToSkipCount As Long
    Dim status As Boolean
    Dim i As Long    
Sub main()
    Set SwApp = Application.SldWorks
    Set swModel = SwApp.ActiveDoc
    Set swModelDocExt = swModel.Extension    
    'Add instances to skip to local linear pattern feature, LocalLPattern1
    status = swModelDocExt.SelectByID2("LocalLPattern1", "COMPPATTERN", 0, 0, 0, False, 0, Nothing, 0)
    Set swSelectionMgr = swModel.SelectionManager
    Set swFeature = swSelectionMgr.GetSelectedObject6(1, -1)
    Set swLocalLinearPatternData = swFeature.GetDefinition
    status = swLocalLinearPatternData.AccessSelections(swModel, Nothing)
    list(0) = 11
    list(1) = 14
    instancesSkipData = list
    swLocalLinearPatternData.SkippedItemArray = instancesSkipData
    status = swFeature.ModifyDefinition(swLocalLinearPatternData, swModel, Nothing)
    'Insert derived pattern feature, LocalCompPattern1
    status = swModelDocExt.SelectByID2("Part2^patterndrivencomponentpattern-1@patterndrivencomponentpattern", "COMPONENT", 0, 0, 0, False, 1, Nothing, 0)
    status = swModelDocExt.SelectByID2("LocalLPattern1", "COMPPATTERN", 0, 0, 0, True, 6, Nothing, 0)
    Set swAssemblyDoc = swModel
    status = swAssemblyDoc.InsertDerivedPattern()    
    'Get number of instances skipped in the driving feature, LocalLPattern1,
    'for the derived pattern feature, LocalCompPattern1
    status = swModelDocExt.SelectByID2("LocalCompPattern1", "COMPPATTERN", 0, 0, 0, False, 0, Nothing, 0)
    Set swFeature = swSelectionMgr.GetSelectedObject6(1, -1)
    Set swDerivedPatternFeatureData = swFeature.GetDefinition
    status = swDerivedPatternFeatureData.AccessSelections(swModel, Nothing)
    instancesSkipData_Derived = swDerivedPatternFeatureData.DrivingFeatureSkippedItemArray
    instancesToSkipCount = UBound(instancesSkipData_Derived)
    Debug.Print "Number of instances skipped in the driving feature of the derived pattern feature: " & instancesToSkipCount + 1
    For i = 0 To instancesToSkipCount
        Debug.Print "  Instance skipped: " & instancesSkipData_Derived(i)
    Next i
    swDerivedPatternFeatureData.ReleaseSelectionAccess
    'Get whether visual properties are propagated in the derived pattern feature
    Debug.Print "Visual properties propagated in the derived pattern feature? " & swDerivedPatternFeatureData.PropagateVisualProperty
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 Number of Instances Skipped in Driving 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) 2017 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.