Hide Table of Contents

Set Custom Bend Deduction Example (VBA)

This example shows how to set a custom bend deduction for a miter flange feature.

'-------------------------------------------------------------
' Preconditions:
' 1. Open a sheet metal part that contains a miter flange
'    feature with bends.
' 2. Select the miter flange feature.
'
' Postconditions: Sets the selected miter flange's custom 
' bend deduction to 1 mm.
'-------------------------------------------------------------
Option Explicit

Dim swApp As SldWorks.SldWorks
Dim Part As SldWorks.ModelDoc2
Dim boolstatus As Boolean
Dim FeatureData As SldWorks.MiterFlangeFeatureData
Dim Feature As SldWorks.Feature
Dim Component As SldWorks.Component
Dim bData As SldWorks.CustomBendAllowance
Dim nam As String

Sub main()

    Set swApp = CreateObject("SldWorks.Application")
    Set Part = swApp.ActiveDoc
   

    ' Get the selected feature
    Set Feature = Part.SelectionManager.GetSelectedObject6(1, -1)
   

    ' Get the name of the selected feature
    nam = Feature.GetTypeName
   

    ' Get the feature definition
    Set FeatureData = Feature.GetDefinition
   

    ' Get whether to use default bend allowance to determine the current state
    Dim useCustom As Boolean
    useCustom = FeatureData.UseDefaultBendAllowance
   

    ' Get the custom bend allowance object
    Set bData = FeatureData.GetCustomBendAllowance
   

    Dim bType As Long
    bType = bData.Type
    ' Set the bend allowance type to deduction
    bData.Type = swBendAllowanceDeduction
   

    ' Set the value of the bend deduction
    bData.BendDeduction = 0.001   
 

    FeatureData.UseDefaultBendAllowance = False   

    ' Set the value of the custom bend deduction
    Call FeatureData.SetCustomBendAllowance(bData)
   

    ' Modify the feature definition
    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) 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.