Hide Table of Contents

Create Curve Through Reference Points Example (VBA)

This example shows how to create a curve through reference points.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Verify that the specified model document exists.
' 2. Open an Immediate window.
'
' Postconditions: 
' 1. Opens the part document.
' 2. Selects four reference points.
' 3. Creates Curve1 through the selected points.
' 4. Inspect the FeatureManager design tree, the graphics area, and the
'    Immediate window.
'
' NOTE: Because the model is used elsewhere, do not save changes.
' ---------------------------------------------------------------------------

Dim swApp As SldWorks.SldWorks
Dim Part As SldWorks.ModelDoc2
Dim feat As SldWorks.Feature
Dim featData As SldWorks.ReferencePointCurveFeatureData
Dim selMgr As SldWorks.SelectionMgr
Dim boolstatus As Boolean
Dim longstatus As Long, longwarnings As Long
Option Explicit
Sub main()

    Set swApp = Application.SldWorks
    Set Part = swApp.OpenDoc6("C:\Users\Public\Documents\SOLIDWORKS\SOLIDWORKS 2018\samples\tutorial\api\block20.sldprt", 1, 0, "", longstatus, longwarnings)
    swApp.ActivateDoc2 "block20", False, longstatus
    Set Part = swApp.ActiveDoc
    Set selMgr = Part.SelectionManager
  

    boolstatus = Part.Extension.SelectByID2("", "VERTEX", 6.46002912861796E-02, 0, 4.93456023787655E-02, False, 1, Nothing, 0)
    boolstatus = Part.Extension.SelectByID2("", "VERTEX", 6.46002912861796E-02, 0.039624, 4.93456023787655E-02, True, 1, Nothing, 0)
    boolstatus = Part.Extension.SelectByID2("", "VERTEX", -6.24778997860176E-02, 0.039624, 4.93456023787655E-02, True, 1, Nothing, 0)
    boolstatus = Part.Extension.SelectByID2("", "VERTEX", -6.24778997860176E-02, 0, 4.93456023787655E-02, True, 1, Nothing, 0)

    Part.Insert3DSplineCurve False
    Part.ClearSelection2 True
    boolstatus = Part.Extension.SelectByID2("Curve1", "REFERENCECURVES", 0, 0, 0, False, 0, Nothing, 0)
    Set feat = selMgr.GetSelectedObject6(1, -1)
    Set featData = feat.GetDefinition
   

    featData.AccessSelections Part, Nothing
    Debug.Print feat.Name
    Debug.Print "  Closed curve? " & featData.ClosedCurve
    Debug.Print "  Number of through points: " & featData.GetThroughPointCount
   

    featData.ReleaseSelectionAccess
   

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 Curve Through Reference Points 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.