<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Hide bend  line from a flat pattern by iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11151690#M137853</link>
    <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Great and easy solution.&lt;/P&gt;</description>
    <pubDate>Fri, 06 May 2022 07:25:17 GMT</pubDate>
    <dc:creator>artemijs.nille</dc:creator>
    <dc:date>2022-05-06T07:25:17Z</dc:date>
    <item>
      <title>Hide bend  line from a flat pattern by iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149584#M137794</link>
      <description>&lt;P&gt;Is it possible to hide bend line from a flat pattern by iLogic?&lt;/P&gt;&lt;P&gt;See picture below&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 12:37:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149584#M137794</guid>
      <dc:creator>artemijs.nille</dc:creator>
      <dc:date>2022-05-05T12:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Hide bend  line from a flat pattern by iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149631#M137796</link>
      <description>&lt;P&gt;&lt;A href="https://adndevblog.typepad.com/manufacturing/2012/06/find-all-curves-on-a-drawing-view-that-corresponds-to-bend-center-lines-in-the-referenced-flat-pattern.html" target="_blank"&gt;https://adndevblog.typepad.com/manufacturing/2012/06/find-all-curves-on-a-drawing-view-that-corresponds-to-bend-center-lines-in-the-referenced-flat-pattern.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 12:50:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149631#M137796</guid>
      <dc:creator>dalton98</dc:creator>
      <dc:date>2022-05-05T12:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Hide bend  line from a flat pattern by iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149952#M137803</link>
      <description>&lt;P class="lia-align-left"&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12394984"&gt;@artemijs.nille&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-left"&gt;You can use the Bend Centerline layer to do this.&lt;/P&gt;
&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-left"&gt;To do this manually, just go to the &lt;STRONG&gt;Annotate&lt;/STRONG&gt; tab &amp;gt; &lt;STRONG&gt;Edit Layers&lt;/STRONG&gt; button, and then click the &lt;STRONG&gt;light bulb icon&lt;/STRONG&gt; for the BendCenterLine layer to toggle it off.&lt;/P&gt;
&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-left"&gt;To do this with an iLogic rule, here is a rule that toggles the layer&lt;/P&gt;
&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;oLayer&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDrawing&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;StylesManager&lt;/SPAN&gt;.&lt;SPAN&gt;Layers&lt;/SPAN&gt;(&lt;SPAN&gt;"BendCenterLine"&lt;/SPAN&gt;)
&lt;SPAN&gt;oLayer&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;oLayer&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here is a rule that just turns it off.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;ThisDrawing&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;StylesManager&lt;/SPAN&gt;.&lt;SPAN&gt;Layers&lt;/SPAN&gt;(&lt;SPAN&gt;"BendCenterLine"&lt;/SPAN&gt;).&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2022 14:29:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11149952#M137803</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2022-05-05T14:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hide bend  line from a flat pattern by iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11151690#M137853</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Great and easy solution.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 07:25:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/hide-bend-line-from-a-flat-pattern-by-ilogic/m-p/11151690#M137853</guid>
      <dc:creator>artemijs.nille</dc:creator>
      <dc:date>2022-05-06T07:25:17Z</dc:date>
    </item>
  </channel>
</rss>

