Hide Table of Contents

Extend Surface Example (VBA)

This example shows how to extend edges of a the selected surface.

'---------------------------------------------------------
' Preconditions:
' 1. Open a part that contains a surface body.
' 2. Select an edge that you want to extend
'    on the surface body.
'
' Postconditions:
' 1. Creates and displays a temporary body using
'    the selected edge.
' 2. Examine the graphics area.
'----------------------------------------------------------
Option Explicit
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim swPart As SldWorks.PartDoc
Dim swEdge As SldWorks.Edge
Dim swBody As SldWorks.Body2
Dim swSelMgr As SldWorks.SelectionMgr
Dim swVertex As SldWorks.Vertex
Dim swFace As SldWorks.Face2
Dim edgeArr(0) As SldWorks.Edge
Dim edgeVar As Variant
Dim bExtLin As Boolean
Dim endCond As Long
Dim newBody1 As SldWorks.Body2
Sub main()
    
    Set swApp = Application.SldWorks
    Set swModel = swApp.ActiveDoc
    Set swPart = swModel
    Set swSelMgr = swModel.SelectionManager    
    ' Select an edge on the surface that you want to extend
    Set swEdge = swSelMgr.GetSelectedObject5(1)
    Set swBody = swEdge.GetBody
    Set edgeArr(0) = swEdge
    edgeVar = edgeArr
    bExtLin = True
    endCond = 0
    Set swVertex = Nothing
    Set swFace = Nothing
    Set newBody1 = swBody.ExtendSurface((edgeVar), bExtLin, endCond, 0.01, swVertex, swFace)
    newBody1.Display2 swPart, RGB(255, 0, 0), 0
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:   Extend Surface 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) 2023 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.