<?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 flat pattern with iProperty as filename in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8871083#M178253</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;= &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPath&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Path&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"\"&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Inventor User Defined Properties"&lt;/SPAN&gt;).&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"POS"&lt;/SPAN&gt;).&lt;SPAN&gt;Value&lt;/SPAN&gt;
		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFilename&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; =  &lt;SPAN&gt;oPath&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt;  &amp;amp;  &lt;SPAN&gt;".dxf"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCommand&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;CommandManager&lt;/SPAN&gt;
&lt;SPAN&gt;oCommand&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;

&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;PostPrivateEvent&lt;/SPAN&gt;(&lt;SPAN&gt;PrivateEventTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kFileNameEvent&lt;/SPAN&gt;,&lt;SPAN&gt;oFilename&lt;/SPAN&gt;) 
&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;ControlDefinitions&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"GeomToDXFCommand"&lt;/SPAN&gt;).&lt;SPAN&gt;Execute2&lt;/SPAN&gt;(&lt;SPAN&gt;True&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;Hi, click on a flat face and then try to execute this ilogic code. I think it could be useful. save a dxf in the path of your active file. It will take the name of the custom property "POS"&lt;BR /&gt;I hope this helps. regards&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jun 2019 14:37:27 GMT</pubDate>
    <dc:creator>Sergio.D.Suárez</dc:creator>
    <dc:date>2019-06-25T14:37:27Z</dc:date>
    <item>
      <title>Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870641#M178250</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to export a dxf with a custom iProperty as filename? It would be great if i can click on a face of a part and select the face to export it as a dxf.&amp;nbsp; Something like "Export face as" but then with the right name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 12:10:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870641#M178250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-25T12:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870665#M178251</link>
      <description>&lt;P&gt;Are you familiar with ilogic?&lt;/P&gt;
&lt;P&gt;There is no "out of the box" solution but some ilogic code can handle the request for you..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need help please indicate the specific name of the custom iproperty and we can help modify the code posted here..&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/help-code-for-quot-export-face-as-quot-have-tried-everything-i/m-p/6459116" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/help-code-for-quot-export-face-as-quot-have-tried-everything-i/m-p/6459116&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Specifically the code in post 9 in that thread&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 12:17:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870665#M178251</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2019-06-25T12:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870840#M178252</link>
      <description>&lt;P&gt;Thanks for the reply, I'm not that good with iLogic but I know how to make and use&amp;nbsp;rules.&lt;/P&gt;&lt;P&gt;The Custom iProperty is POS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, Wim&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 13:08:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8870840#M178252</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-25T13:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8871083#M178253</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;= &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPath&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Path&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"\"&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Inventor User Defined Properties"&lt;/SPAN&gt;).&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"POS"&lt;/SPAN&gt;).&lt;SPAN&gt;Value&lt;/SPAN&gt;
		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFilename&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; =  &lt;SPAN&gt;oPath&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt;  &amp;amp;  &lt;SPAN&gt;".dxf"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCommand&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;CommandManager&lt;/SPAN&gt;
&lt;SPAN&gt;oCommand&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;

&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;PostPrivateEvent&lt;/SPAN&gt;(&lt;SPAN&gt;PrivateEventTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kFileNameEvent&lt;/SPAN&gt;,&lt;SPAN&gt;oFilename&lt;/SPAN&gt;) 
&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;ControlDefinitions&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"GeomToDXFCommand"&lt;/SPAN&gt;).&lt;SPAN&gt;Execute2&lt;/SPAN&gt;(&lt;SPAN&gt;True&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;Hi, click on a flat face and then try to execute this ilogic code. I think it could be useful. save a dxf in the path of your active file. It will take the name of the custom property "POS"&lt;BR /&gt;I hope this helps. regards&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 14:37:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8871083#M178253</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-06-25T14:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8872627#M178254</link>
      <description>&lt;P&gt;This will do it.&amp;nbsp; Thank you very much!!!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 06:38:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8872627#M178254</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-26T06:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873012#M178255</link>
      <description>&lt;P&gt;Hi Sergio,&lt;/P&gt;&lt;P&gt;I think there's something wrong with the rule.&amp;nbsp; When I open multiple parts to save them as a DXF, the rule pick properties from another part.&amp;nbsp; So the 'POS' fields doesn't match with geometry.&amp;nbsp; Is this solvable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wim Webers&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 10:05:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873012#M178255</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-26T10:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873034#M178256</link>
      <description>&lt;P&gt;I think maybe you're trying to run the rule from an assembly that contains the parts. The rule refers to the active document, and if it is an assembly it will return data from an assembly. If this is so, I'll see if I can modify it so that the actions from an assembly. regards&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 10:17:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873034#M178256</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-06-26T10:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873136#M178257</link>
      <description>&lt;P&gt;If you are working from a master assembly try this rule, I have not tried it, but I think it should work.&lt;BR /&gt;Keep in mind that it will return error if there is no "POS" property in the part.&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FaceProxy&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;SelectionFilterEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kPartFacePlanarFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Select Face"&lt;/SPAN&gt;)
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oOcc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; = &lt;SPAN&gt;oFace&lt;/SPAN&gt;.&lt;SPAN&gt;ContainingOccurrence&lt;/SPAN&gt;

&lt;SPAN&gt;oOcc&lt;/SPAN&gt;.&lt;SPAN&gt;Edit&lt;/SPAN&gt;
		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;oFace&lt;/SPAN&gt;.&lt;SPAN&gt;NativeObject&lt;/SPAN&gt;.&lt;SPAN&gt;Parent&lt;/SPAN&gt;.&lt;SPAN&gt;Parent&lt;/SPAN&gt;.&lt;SPAN&gt;document&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPath&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;Left&lt;/SPAN&gt;(&lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;, (&lt;SPAN&gt;InStrRev&lt;/SPAN&gt;(&lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;, &lt;SPAN&gt;"\"&lt;/SPAN&gt;, -1, &lt;SPAN&gt;vbTextCompare&lt;/SPAN&gt;)))

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Inventor User Defined Properties"&lt;/SPAN&gt;).&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"POS"&lt;/SPAN&gt;).&lt;SPAN&gt;Value&lt;/SPAN&gt;
		
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFilename&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;oPath&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;My_Prop&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;".dxf"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCommand&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;CommandManager&lt;/SPAN&gt;
&lt;SPAN&gt;oCommand&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;

&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;DoSelect&lt;/SPAN&gt;(&lt;SPAN&gt;oFace&lt;/SPAN&gt;)&lt;SPAN&gt;'Select face&lt;/SPAN&gt;
&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;PostPrivateEvent&lt;/SPAN&gt;(&lt;SPAN&gt;PrivateEventTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kFileNameEvent&lt;/SPAN&gt;,&lt;SPAN&gt;oFilename&lt;/SPAN&gt;) 
&lt;SPAN&gt;oCommand&lt;/SPAN&gt;.&lt;SPAN&gt;ControlDefinitions&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"GeomToDXFCommand"&lt;/SPAN&gt;).&lt;SPAN&gt;Execute2&lt;/SPAN&gt;(&lt;SPAN&gt;True&lt;/SPAN&gt;)

&lt;SPAN&gt;oOcc&lt;/SPAN&gt;.&lt;SPAN&gt;ExitEdit&lt;/SPAN&gt;(63747)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope I help you with your problem. regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 11:08:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873136#M178257</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-06-26T11:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873216#M178258</link>
      <description>&lt;P&gt;I'm exporting from a part and not from an assembly, but I opened them from the BOM in an assembly.&amp;nbsp; Now I opened them again,&amp;nbsp;closed the assembly and start&amp;nbsp;to export and it works now.&amp;nbsp; I'm not sure if there was the problem is but is working now.&lt;/P&gt;&lt;P&gt;Thanks for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, Wim&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 11:41:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/8873216#M178258</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-26T11:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export flat pattern with iProperty as filename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/9406666#M178259</link>
      <description>&lt;P&gt;Does the .dxf file default to a certain file type and version (i.e. AutoCAD 2013 DXF vs. 2018 )? If not, is there a way this can be controlled using code or properties in Inventor?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2020 20:18:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/export-flat-pattern-with-iproperty-as-filename/m-p/9406666#M178259</guid>
      <dc:creator>jimmydieck</dc:creator>
      <dc:date>2020-03-28T20:18:52Z</dc:date>
    </item>
  </channel>
</rss>

