New to the forum. Is there a way to auto balloon all the features of a single part? I have a part with 1,350 features and not looking forward to doing them all by hand.
New to the forum. Is there a way to auto balloon all the features of a single part? I have a part with 1,350 features and not looking forward to doing them all by hand.
Can you post a picture of the desired result? I'm not comprehending what a feature is meant to be in this context.
It would be fairly straightforward to write a macro that traverses each feature in the design tree of a part and adds a note to the drawing view for any visible faces or edges that are children of that feature. This would not be guaranteed to "balloon" every feature as it is possible for features two have no visible faces.
If by "feature" you mean "thing that should be dimensioned", that isn't quite as easy.
Also, what is the purpose of this drawing? How is it used?
The best way would be a macro. You would have to iterate through all of the components in a view and place balloons on them with the method shown in this link.
2013 SOLIDWORKS API Help - Add Auto Balloons to Drawing Example (VBA)
This code may help with navigating the components in each view. You may have to modify it though.