Hide Table of Contents

Extend Surface Example (VBA)

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

 

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

'

' Preconditions: Select an edge on the surface body that you want to extend.

'

' Postconditions: A temporary body with the selected edges is displayed.

'

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

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 swFeat As SldWorks.feature

Dim edgeVar As Variant

Dim ct As Integer

Dim bExtLin As Boolean

Dim endCond As Long

Dim newBody1 As SldWorks.Body2

Dim i As Integer

 

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

 

Stop 'Select edges to extend

Const ct = 2

Dim edgeArr(0 To ct - 1) As Object

For i = 0 To ct - 1

    Set edgeArr(i) = swSelMgr.GetSelectedObject5(i + 1)

Next i

 

edgeVar = edgeArr

bExtLin = True

endCond = 0

 

If endCond = 1 Then

    Stop 'Select the vertex

    Set swVertex = swSelMgr.GetSelectedObject5(1)

End If

 

If endCond = 2 Then

    Stop 'Select the face

    Set swFace = swSelMgr.GetSelectedObject5(1)

End If

 

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) 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.