Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
artemijs.nille
321 Views, 3 Replies

Hide bend line from a flat pattern by iLogic

Is it possible to hide bend line from a flat pattern by iLogic?

See picture below

Hi @artemijs.nille 

 

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.