<?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 select the export parameter box in fx parameters using iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294386#M158876</link>
    <description>&lt;P&gt;I am trying to find a way to check the "export parameter" checkbox on in "fx parameters" using iLogic to add to exsiting rule. Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonMayes_0-1696872892632.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1277011iD8D07749E863F910/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonMayes_0-1696872892632.png" alt="JasonMayes_0-1696872892632.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Jason Mayes&lt;/P&gt;</description>
    <pubDate>Mon, 09 Oct 2023 17:35:36 GMT</pubDate>
    <dc:creator>JasonMayes</dc:creator>
    <dc:date>2023-10-09T17:35:36Z</dc:date>
    <item>
      <title>select the export parameter box in fx parameters using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294386#M158876</link>
      <description>&lt;P&gt;I am trying to find a way to check the "export parameter" checkbox on in "fx parameters" using iLogic to add to exsiting rule. Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonMayes_0-1696872892632.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1277011iD8D07749E863F910/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonMayes_0-1696872892632.png" alt="JasonMayes_0-1696872892632.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Jason Mayes&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 17:35:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294386#M158876</guid>
      <dc:creator>JasonMayes</dc:creator>
      <dc:date>2023-10-09T17:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: select the export parameter box in fx parameters using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294426#M158878</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506634"&gt;@JasonMayes&lt;/a&gt;.&amp;nbsp; That is a property of the &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-Parameter" target="_blank" rel="noopener"&gt;Parameter&lt;/A&gt; API object called &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=Parameter_ExposedAsProperty" target="_blank" rel="noopener"&gt;ExposedAsProperty&lt;/A&gt;, which has a Read/Write Boolean type value.&amp;nbsp; There are lots of examples of how to access and change that property here on this forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim oParams As Inventor.Parameters = ThisDoc.Document.ComponentDefinition.Parameters
Dim oParam As Inventor.Parameter = oParams.Item(1)
'this next line will 'toggle' that setting every time you run it
oParam.ExposedAsProperty = Not oParam.ExposedAsProperty&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN&gt;&lt;STRONG&gt; ACCEPT SOLUTION &lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;BR /&gt;Or, if this helped you, please click (LIKE or KUDOS) &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@7401B55A0A518861312A0F851CD29320/emoticons/1f44d.png" alt=":thumbs_up:" title=":thumbs_up:" /&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 18:08:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294426#M158878</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-10-09T18:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: select the export parameter box in fx parameters using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294587#M158880</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/check-export-parameter-box/m-p/7748634/thread-id/79933" target="_blank"&gt;Solved: check export parameter box - Autodesk Community - Inventor&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 19:33:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/select-the-export-parameter-box-in-fx-parameters-using-ilogic/m-p/12294587#M158880</guid>
      <dc:creator>JasonMayes</dc:creator>
      <dc:date>2023-10-09T19:33:46Z</dc:date>
    </item>
  </channel>
</rss>

