Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I'm working on some code that "cleans up" a drawing, automatically removing any broken annotations and drawing dimensions.
The process is very simple for dimensions and balloons:
For Each oDim As GeneralDimension In thisSheet.DrawingDimensions.GeneralDimensions
If oDim.Attached = False Then
oDim.Delete()
End If
Next
However, I cannot seem to find a property that works like the .Attached property for LeaderNotes and HoleThreadNotes. There is obviously something that does this somewhere in Inventor, because leader notes turn pink, and Hole and Thread notes grey out when they become "detached".
Does anyone know how to do this?
Solved! Go to Solution.