Hide Table of Contents

Set Custom Bend Deduction (VBA)

This example shows how to set the custom bend deduction for the selected bend feature.

 

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

'

' Preconditions:

'     (1) Sheet metal part is open.

'     (2) Bend feature is selected.

'

' Postconditions: Selected bend feature is modified.

'

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

Option Explicit

 

Dim swApp As SldWorks.SldWorks

Dim Part As SldWorks.ModelDoc2

Dim boolstatus As Boolean

Dim longstatus As Long

Dim FeatureData As SldWorks.SketchBendFeatureData

Dim Feature As SldWorks.Feature

Dim Component As SldWorks.Component

Dim nam As String

 

Sub main()

 

Set swApp = CreateObject("SldWorks.Application")

Set Part = swApp.ActiveDoc

 

' Get the selected bend feature

Set Feature = Part.SelectionManager.GetSelectedObject5(1)

 

'Get the name of the selected bend feature

nam = Feature.GetTypeName

Set FeatureData = Feature.GetDefinition

 

' Get whether to use default bend allowance to determine the current state

' NEEDED?

Dim useCustom As Boolean

useCustom = FeatureData.UseDefaultBendAllowance

 

' Get the custom bend allowance object

Dim bData As SldWorks.CustomBendAllowance

Set bData = FeatureData.GetCustomBendAllowance

 

Dim bType As Long

bType = bData.Type

' Set the bend allowance type to bend deduction

bData.Type = swBendAllowanceDeduction

 

' Set the value of the bend deduction

bData.BendDeduction = 0.001

 

FeatureData.UseDefaultBendAllowance = False

'Set the value of the bend deduction

Call FeatureData.SetCustomBendAllowance(bData)

 

' Modify the bend

boolstatus = Feature.ModifyDefinition(FeatureData, Part, Component)

 

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:   Set Custom Bend Deduction 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.