Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to hide bend line from a flat pattern by iLogic?
See picture below
Solved! Go to Solution.
Is it possible to hide bend line from a flat pattern by iLogic?
See picture below
Solved! Go to Solution.
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
Thank you.
Great and easy solution.