Hide Table of Contents

Change Faces of Move Face Feature Example (VBA)

This example shows how to modify a Move Face feature by changing the defining faces.

 

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

'

' Preconditions: Part is open that has a Move Face feature.

'

' Postcondtiions: The selected new face now defines the Move Face

'                feature.

'

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

Option Explicit

 

Dim swApp As SldWorks.SldWorks

Dim swModel As SldWorks.ModelDoc2

Dim swModelDocExt As SldWorks.ModelDocExtension

Dim swSelMgr As SldWorks.SelectionMgr

Dim swFeat As SldWorks.Feature

Dim swMoveFaceFeat As SldWorks.MoveFaceFeatureData

Dim swEnt As SldWorks.Entity

Dim vFaces As Variant

Dim pFace As Variant

Dim vNewFaces As Variant

Dim pNewFace As Variant

Dim pNewFaceArr(0) As Object

Dim boolstatus As Boolean

 

Sub main()

 

    Set swApp = Application.SldWorks

    Set swModel = swApp.ActiveDoc

    Set swSelMgr = swModel.SelectionManager

    Set swModelDocExt = swModel.Extension

    

    ' Select the Move Face feature

    boolstatus = swModelDocExt.SelectByID2("Move Face1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)

    Set swFeat = swSelMgr.GetSelectedObject6(1, 0)

    swModel.ClearSelection2 True

    Set swMoveFaceFeat = swFeat.GetDefinition

    

    ' Roll back the Move Face feature

    swMoveFaceFeat.AccessSelections swModel, Nothing

    

    ' Find and clear the faces that define the Move Face feature

    vFaces = swMoveFaceFeat.Faces

    For Each pFace In vFaces

        Set swEnt = pFace

        swEnt.Select4 False, Nothing

        swModel.ClearSelection2 True

    Next

    

    ' Select a new face for the Move Face feature

    boolstatus = swModelDocExt.SelectByID2("", "FACE", 0.06393265679355, 0.04999999999984, 0.01806458069194, False, 0, Nothing, 0)

    Set pNewFace = swSelMgr.GetSelectedObject6(1, 0)

    swModel.ClearSelection2 True

    Set pNewFaceArr(0) = pNewFace

    vNewFaces = pNewFaceArr

    ' Set the new face for the Move Face feature

    swMoveFaceFeat.Faces = vNewFaces

    

    ' Modify the Move Face feature and roll back the feature

    swFeat.ModifyDefinition swMoveFaceFeat, swModel, Nothing

    

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:   Change Faces of Move Face 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) 2012 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.