Hide Table of Contents

Insert Bend Table Example (VBA)

This example shows how to insert a bend table in a drawing of a flattened sheet metal part.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Open a drawing that contains a flat pattern view
'    of a flattened sheet metal part.
' 2. Replace install_dir with your SOLIDWORKS installation directory.
' 3. Select the flat pattern view (Drawing View1)
'    in the FeatureManager design tree.
'
' Postconditions:
' 1. A bend table is inserted for the selected view.
' 2. Inspect the Immediate Window.
' ---------------------------------------------------------------------------

Dim swApp As SldWorks.SldWorks
Dim Part As SldWorks.ModelDoc2
Dim swView As SldWorks.View
Dim myBendTableAnnot As SldWorks.BendTableAnnotation
Dim myBendTableFeat As SldWorks.BendTable

Option Explicit

Sub main()

    Set swApp = Application.SldWorks
    Set Part = swApp.ActiveDoc
   

    Set swView = Part.SelectionManager.GetSelectedObjectsDrawingView2(1, -1)
    Set myBendTableAnnot = swView.InsertBendTable(False, 0.3018189506239, 0.4876053587373, swBOMConfigurationAnchor_TopLeft, "A", "install_dir\lang\english\bendtable-standard.sldbndtbt")
   

    Set myBendTableFeat = myBendTableAnnot.BendTable
    Debug.Print myBendTableFeat.GetFeature.Name
    Debug.Print "Starting tag: " & myBendTableFeat.StartingValue
    Debug.Print "swBendTableTagStyle_e option: " & myBendTableFeat.TagStyle
    Debug.Print "Number of bend table annotations: " & myBendTableFeat.GetTableAnnotationCount
   

    Part.ClearSelection2 True
   

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:   Insert Bend Table 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) 2015 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.