<?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: iLogic - set Exportparameter in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878759#M98887</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/311307"&gt;@Uwe_Lindner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand what you mean!&lt;/P&gt;&lt;P&gt;could you please explain a little more in detail.&lt;/P&gt;&lt;P&gt;German is no problem for me but for the forum maybe it is..&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2019 09:13:35 GMT</pubDate>
    <dc:creator>bradeneuropeArthur</dc:creator>
    <dc:date>2019-06-28T09:13:35Z</dc:date>
    <item>
      <title>iLogic - set Exportparameter</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878743#M98885</link>
      <description>&lt;P&gt;Hallo Forum,&lt;/P&gt;&lt;P&gt;wie kann ich beim erstellen von benutzerdefinierten Parametern den Schalter für den Exportparameter setzen?&lt;/P&gt;&lt;P&gt;Wenn ich über&amp;nbsp;eine Regel einen Parameter erzeuge, dann ist die Wahlbox zum Exportparameter leer.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Exportparameter.JPG" style="width: 163px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/652105i0EAD2A1FB30DC92D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Exportparameter.JPG" alt="Exportparameter.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 09:03:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878743#M98885</guid>
      <dc:creator>Uwe_Lindner</dc:creator>
      <dc:date>2019-06-28T09:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - set Exportparameter</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878759#M98887</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/311307"&gt;@Uwe_Lindner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand what you mean!&lt;/P&gt;&lt;P&gt;could you please explain a little more in detail.&lt;/P&gt;&lt;P&gt;German is no problem for me but for the forum maybe it is..&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 09:13:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878759#M98887</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2019-06-28T09:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - set Exportparameter</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878842#M98897</link>
      <description>&lt;P&gt;Hi, below is an example of a code that creates a custom parameter in a file.&lt;BR /&gt;I think the answer to what you ask is in the red line of the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;ParamName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"A1"&lt;/SPAN&gt;
&lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;AddByExpression&lt;/SPAN&gt;(&lt;SPAN&gt;ParamName&lt;/SPAN&gt;, &lt;SPAN&gt;"100"&lt;/SPAN&gt;, &lt;SPAN&gt;"mm"&lt;/SPAN&gt;)
&lt;SPAN&gt;oParam&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;ParamName&lt;/SPAN&gt;)&lt;SPAN&gt;'get the parameter&lt;/SPAN&gt;
&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;oParam.ExposedAsProperty = True&lt;/FONT&gt;&lt;/STRONG&gt;&lt;SPAN&gt;'export the paramter as an iProperty&lt;/SPAN&gt;
&lt;SPAN&gt;oParam&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyFormat&lt;/SPAN&gt;.&lt;SPAN&gt;PropertyType&lt;/SPAN&gt;=&lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kTextPropertyType&lt;/SPAN&gt;&lt;SPAN&gt;'kNumberPropertyType&lt;/SPAN&gt;
&lt;SPAN&gt;oParam&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyFormat&lt;/SPAN&gt;.&lt;SPAN&gt;Precision&lt;/SPAN&gt;=&lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyPrecisionEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kZeroDecimalPlacePrecision&lt;/SPAN&gt;&lt;SPAN&gt;'kThreeDecimalPlacesPrecision&lt;/SPAN&gt;
&lt;SPAN&gt;oParam&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyFormat&lt;/SPAN&gt;.&lt;SPAN&gt;ShowUnitsString&lt;/SPAN&gt;=&lt;SPAN&gt;False&lt;/SPAN&gt;
&lt;SPAN&gt;oParam&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyFormat&lt;/SPAN&gt;.&lt;SPAN&gt;ShowTrailingZeros&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
&lt;SPAN&gt;oParam&lt;/SPAN&gt;.&lt;SPAN&gt;CustomPropertyFormat&lt;/SPAN&gt;.&lt;SPAN&gt;ShowLeadingZeros&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I hope this helps greetings&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 09:51:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878842#M98897</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2019-06-28T09:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - set Exportparameter</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878862#M98898</link>
      <description>&lt;P&gt;Muchas gracias Senor!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 10:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-set-exportparameter/m-p/8878862#M98898</guid>
      <dc:creator>Uwe_Lindner</dc:creator>
      <dc:date>2019-06-28T10:03:18Z</dc:date>
    </item>
  </channel>
</rss>

