Hide bend line from a flat pattern by iLogic

Hide bend line from a flat pattern by iLogic

artemijs.nille
Contributor Contributor
387 Views
3 Replies
Message 1 of 4

Hide bend line from a flat pattern by iLogic

artemijs.nille
Contributor
Contributor

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

See picture below

0 Likes
Accepted solutions (1)
388 Views
3 Replies
Replies (3)
Message 3 of 4

Curtis_Waguespack
Consultant
Consultant
Accepted solution

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

EESignature

Message 4 of 4

artemijs.nille
Contributor
Contributor

Thank you.

Great and easy solution.

0 Likes