<?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: Export dxf file through API with colored layers in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109323#M102486</link>
    <description>&lt;P&gt;I was missing an ampersand within the quotes on this line...&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #f5f5f5; color: #3e3e3e; font-family: Menlo,Monaco,Consolas,'Courier New',monospace; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.7142; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: break-all; word-spacing: 0px;"&gt;"FeatureProfilesLayerColor=255;255;0" &amp;amp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And needed to add&amp;nbsp;&lt;FONT&gt;"FeatureProfilesUpLayerColor=255;255;0&amp;amp;" &amp;amp; "FeatureProfilesDownLayerColor=255;255;0&amp;amp;" &amp;amp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Thank you very much for your post!!!&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Oct 2019 17:46:16 GMT</pubDate>
    <dc:creator>CAD_CAM_MAN</dc:creator>
    <dc:date>2019-10-25T17:46:16Z</dc:date>
    <item>
      <title>Export dxf file through API with colored layers</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109182#M102484</link>
      <description>&lt;P&gt;I am trying to export dxf files through the API with the FeatureProfilesLayer color set to yellow but cannot seem to get the syntax correct or maybe missing something else. In any case it is not working. Can somebody show the correct format or point me in the right direction? Code below...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sOut = "FLAT PATTERN DXF?AcadVersion=R12&amp;amp;" &amp;amp;
               "OuterProfileLayer=CUT&amp;amp;" &amp;amp;
               "InteriorProfilesLayer=CUT&amp;amp;" &amp;amp;
               "FeatureProfilesLayer=ETCH&amp;amp;" &amp;amp;
               "FeatureProfilesLayerColor=255;255;0" &amp;amp;
               "InvisibleLayers=IV_ARC_CENTERS;IV_TOOL_CENTER;IV_TOOL_CENTER_DOWN;IV_UNCONSUMED_SKETCHES"&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Oct 2019 16:39:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109182#M102484</guid>
      <dc:creator>CAD_CAM_MAN</dc:creator>
      <dc:date>2019-10-25T16:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export dxf file through API with colored layers</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109268#M102485</link>
      <description>&lt;P&gt;I set a color for our ETCH layer and a few other things with mine:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; Dim sOut As String
        sOut = "FLAT PATTERN DXF?AcadVersion=2010&amp;amp;" &amp;amp;
                            "OuterProfileLayer=0&amp;amp;" &amp;amp;
                            "InteriorProfilesLayer=0&amp;amp;" &amp;amp;
                            "BendUpLayerColor=255;255;0&amp;amp;" &amp;amp;
                            "BendUpLayerLineType=37641&amp;amp;" &amp;amp;
                            "BendDownLayerColor=255;255;0" &amp;amp;
                            "BendDownLayerLineType=37641&amp;amp;" &amp;amp;
                            "BendUpLayer=Etch&amp;amp;" &amp;amp;
                            "BendDownLayer=Etch&amp;amp;" &amp;amp;
                            "BendLayer=Etch&amp;amp;" &amp;amp;
                            "FeatureProfilesUpLayer=Etch&amp;amp;" &amp;amp;
                            "FeatureProfilesUpLayerColor=255;255;0&amp;amp;" &amp;amp;
                            "FeatureProfilesUpLayerLineType=37641&amp;amp;" &amp;amp;
                            "FeatureProfilesDownLayer=Etch&amp;amp;" &amp;amp;
                            "FeatureProfilesDownLayerColor=255;255;0&amp;amp;" &amp;amp;
                            "FeatureProfilesDownLayerLineType=37641&amp;amp;" &amp;amp;
                            "UnconsumedSketchesLayer=Etch&amp;amp;" &amp;amp;
                            "UnconsumedSketchesLayerColor=255;255;0&amp;amp;" &amp;amp;
                            "UnconsumedSketchesLayerLineType=37641&amp;amp;" &amp;amp;
                            "InvisibleLayers=IV_ARC_CENTERS;IV_TANGENT" &amp;amp;
                            "SimplifySplines=False"&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Oct 2019 17:29:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109268#M102485</guid>
      <dc:creator>mslosar</dc:creator>
      <dc:date>2019-10-25T17:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Export dxf file through API with colored layers</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109323#M102486</link>
      <description>&lt;P&gt;I was missing an ampersand within the quotes on this line...&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #f5f5f5; color: #3e3e3e; font-family: Menlo,Monaco,Consolas,'Courier New',monospace; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.7142; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: break-all; word-spacing: 0px;"&gt;"FeatureProfilesLayerColor=255;255;0" &amp;amp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And needed to add&amp;nbsp;&lt;FONT&gt;"FeatureProfilesUpLayerColor=255;255;0&amp;amp;" &amp;amp; "FeatureProfilesDownLayerColor=255;255;0&amp;amp;" &amp;amp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Thank you very much for your post!!!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 17:46:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109323#M102486</guid>
      <dc:creator>CAD_CAM_MAN</dc:creator>
      <dc:date>2019-10-25T17:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Export dxf file through API with colored layers</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109592#M102491</link>
      <description>&lt;P&gt;No problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Saw your post and remembered doing this, having the same problem, and think the answer was kinda dumb &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt; Glad i knew where it was.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 20:22:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/export-dxf-file-through-api-with-colored-layers/m-p/9109592#M102491</guid>
      <dc:creator>mslosar</dc:creator>
      <dc:date>2019-10-25T20:22:19Z</dc:date>
    </item>
  </channel>
</rss>

