Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dim oDoc As DrawingDocument Dim oSheet As Sheet Dim oView As DrawingView Dim oCurve As DrawingCurve Dim oBendNote As BendNote oDoc = ThisApplication.ActiveDocument oSheet = oDoc.ActiveSheet For Each oView In oSheet.DrawingViews For Each oCurve In oView.DrawingCurves If oCurve.EdgeType = Inventor.DrawingEdgeTypeEnum.kBendDownEdge _ Or oCurve.EdgeType = Inventor.DrawingEdgeTypeEnum.kBendUpEdge Then ' Create the bend note oBendNote = oSheet.DrawingNotes.BendNotes.Add(oCurve) End If Next 'oCurve Next 'oView
I am using this rule to create bend note.
Is it possible not to create the note if the bend radius value greater than 10mm.
How can i do that
Solved! Go to Solution.