05-05-2022
05:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-05-2022
05:37 AM
Is it possible to hide bend line from a flat pattern by iLogic?
See picture below
Solved! Go to Solution.
05-05-2022
05:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-05-2022
07:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-05-2022
07:27 AM
You can use the Bend Centerline layer to do this.
To do this manually, just go to the Annotate tab > Edit Layers button, and then click the light bulb icon for the BendCenterLine layer to toggle it off.
To do this with an iLogic rule, here is a rule that toggles the layer
oLayer = ThisDrawing.Document.StylesManager.Layers("BendCenterLine") oLayer.Visible = Not oLayer.Visible
And here is a rule that just turns it off.
ThisDrawing.Document.StylesManager.Layers("BendCenterLine").Visible = False
I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com
05-06-2022
12:25 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report