Hide Table of Contents

Create Local Curve-driven Pattern Example (VBA)

This example shows how to create a local curve-driven pattern feature.

'------------------------------------------------------------------------------
' Preconditions:
' 1. Verify that the specified assembly document to open exists.
' 2. Open the Immediate window.
'
' Postconditions:
' 1. Opens the assembly document.
' 2. Selects the component and edge for the
'    local curve-driven pattern feature.
' 3. Creates a local curve-driven pattern feature.
' 4. Gets values and settings of the local curve-driven 
'    pattern feature.
' 5. Examine the Immediate window and graphics area.
'
' NOTE: Because this assembly is used elsewhere, do not save
' changes.
'------------------------------------------------------------------------------
Option Explicit
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim swModelDocExt As SldWorks.ModelDocExtension
Dim swFeatMgr As SldWorks.FeatureManager
Dim swFeat As SldWorks.Feature
Dim swLocalCurvePatternFeat As SldWorks.LocalCurvePatternFeatureData
Dim fileName As String
Dim status As Boolean
Dim errors As Long
Dim warnings As Long
Sub main()
    Set swApp = Application.SldWorks    
    'Open assembly document
    fileName = "C:\Users\Public\Documents\SOLIDWORKS\SOLIDWORKS 2018\samples\tutorial\api\assem20.sldasm"
    Set swModel = swApp.OpenDoc6(fileName, swDocumentTypes_e.swDocASSEMBLY, swOpenDocOptions_e.swOpenDocOptions_Silent, "", errors, warnings)  
    'Select a component and an edge
    'for the local curve-driven pattern
    Set swModelDocExt = swModel.Extension
    status = swModelDocExt.SelectByID2("block20-1@assem20", "COMPONENT", 0, 0, 0, False, 1, Nothing, 0)
    status = swModelDocExt.SelectByID2("", "EDGE", 0.131144367102934, 8.44607238593085E-02, -0.124705856534547, True, 2, Nothing, 0)    
    'Create local curve-driven pattern feature
    Set swFeatMgr = swModel.FeatureManager    
    'Set EqualSpacing1 to False
    Set swFeat = swFeatMgr.FeatureLocalCurveDrivenPattern(False, 3, False, 0.15, swLocalCurvePatternReferencePoint_e.swLocalCurvePatternBoundingBoxCenter, swLocalCurvePatternCurveMethod_e.swLocalCurvePatternOffsetCurve, swLocalCurvePatternAlignment_e.swLocalCurvePatternAlignToSeed, False, False, 0, False, 0, False)    
    'Set EqualSpacing1 to True
    'Set swFeat = swFeatMgr.FeatureLocalCurveDrivenPattern(False, 3, True, 0.5, swLocalCurvePatternReferencePoint_e.swLocalCurvePatternBoundingBoxCenter, swLocalCurvePatternCurveMethod_e.swLocalCurvePatternOffsetCurve, swLocalCurvePatternAlignment_e.swLocalCurvePatternAlignToSeed, False, False, 0, False, 0, False)        
    'Get local curve-driven pattern feature data
    Set swLocalCurvePatternFeat = swFeat.GetDefinition
    Debug.Print "Local curve-driven pattern properties: "
    Debug.Print "  Number of components: " & swLocalCurvePatternFeat.GetPatternComponentCount
    Debug.Print "  Number of skipped items: " & swLocalCurvePatternFeat.GetSkippedItemCount
    Debug.Print "  Direction 1: "
    Debug.Print "     Number of pattern instances: " & swLocalCurvePatternFeat.D1InstanceCount
    Debug.Print "     Is direction flipped: " & swLocalCurvePatternFeat.D1ReverseDirection
    Debug.Print "     Pattern instances equal spaced: " & swLocalCurvePatternFeat.D1IsEqualSpaced
    Debug.Print "     Spacing for pattern instances: " & swLocalCurvePatternFeat.D1Spacing
    Debug.Print "     Curve method: " & swLocalCurvePatternFeat.D1CurveMethod
    Debug.Print "     Alignment method: " & swLocalCurvePatternFeat.D1AlignmentMethod
    Debug.Print "  Direction 2:"
    Debug.Print "     Is Direction 2 specified: " & swLocalCurvePatternFeat.Dir2Specified
    
    
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:   Create Local Curve-driven Pattern 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) 2018 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.