- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have the need to break a lot of links created by addsilhouette, and addentity and such to a sketch. After the entities are added to the sketch the lines, arcs, circles, ellipses are all still linked back to the original 3D solid. Running Break Link on over 700 objects cycles through and breaks the link. However approx. 5% of the lines have been moved (where point values get set to 0 or something). I think this may be a bug with Inventor (using version 2019.1.2 build 200). If you break link on these exact lines one by one by hand, it succeeds, if you do so in batch by hand it messes up. If you do so in batch by this code (vb.net), it messes just the same:
Public Sub BreakAllLinks(sketch As Sketch)
For Each en As SketchEntity In sketch.SketchEntities
en.Reference = False
Next
End SubMy intention is to report this bug, but also is there a way to add these entities without linking in the first place via code?
Solved! Go to Solution.