<?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: Create custom iProperty for subcomponents &amp;amp; subassemblies from within parent assembly in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781636#M131742</link>
    <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5011186"&gt;@JelteDeJong&lt;/a&gt;,&amp;nbsp;works perfectly now!&lt;/P&gt;</description>
    <pubDate>Thu, 25 Nov 2021 13:38:54 GMT</pubDate>
    <dc:creator>iogurt1</dc:creator>
    <dc:date>2021-11-25T13:38:54Z</dc:date>
    <item>
      <title>Create custom iProperty for subcomponents &amp; subassemblies from within parent assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781603#M131740</link>
      <description>&lt;P&gt;Hey everyone. Our goal is to create a new iProperty called "TEST" in just the first level of children of an assembly. With this code, it does what we want, but it goes all the way down, if there are subassemblies with parts in them. Is it possible to only run this on the top level items? Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsmCompDef&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyComponentDefinition&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oAsmCompDef&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Iterate through all Of the occurrences&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ComponentOccurrence&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsmCompDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Occurrences&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedOccurrences&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oAsmCompDef&lt;/SPAN&gt;) 
			
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;) = &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt;
	    &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Revision Number"&lt;/SPAN&gt;)
	    &lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
	    &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Revision Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #008080;"&gt;"_P"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;)
	    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;  

&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'auf .iam Ebene&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;) = &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt;
	    &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Revision Number"&lt;/SPAN&gt;)
	    &lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
	    &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Revision Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #008080;"&gt;"_P"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Status"&lt;/SPAN&gt;)
	    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;  &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 13:24:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781603#M131740</guid>
      <dc:creator>iogurt1</dc:creator>
      <dc:date>2021-11-25T13:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create custom iProperty for subcomponents &amp; subassemblies from within parent assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781622#M131741</link>
      <description>&lt;P&gt;you can try this:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ce5c95;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;doc&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #9d6bce;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Document&lt;/SPAN&gt;

&lt;SPAN style="color: #ce5c95;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #db9652;"&gt;doc&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Occurrences&lt;/SPAN&gt;

    &lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;) = &lt;SPAN style="color: #35b173;"&gt;""&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;Then&lt;/SPAN&gt;
        &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Revision Number"&lt;/SPAN&gt;)
    &lt;SPAN style="color: #ce5c95;"&gt;Else&lt;/SPAN&gt;
        &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Revision Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #35b173;"&gt;"_P"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #db9652;"&gt;oOccurrence&lt;/SPAN&gt;.&lt;SPAN style="color: #db9652;"&gt;Name&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;)
    &lt;SPAN style="color: #ce5c95;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #ce5c95;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #b2b2b5;"&gt;'auf .iam Ebene&lt;/SPAN&gt;
&lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;) = &lt;SPAN style="color: #35b173;"&gt;""&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Revision Number"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ce5c95;"&gt;Else&lt;/SPAN&gt;
    &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Custom"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"TEST"&lt;/SPAN&gt;) = &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Part Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Project"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Revision Number"&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #35b173;"&gt;"_P"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #9d6bce;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #9d6bce;"&gt;Value&lt;/SPAN&gt;(&lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;, &lt;SPAN style="color: #35b173;"&gt;"Status"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ce5c95;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ce5c95;"&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Nov 2021 13:32:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781622#M131741</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2021-11-25T13:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create custom iProperty for subcomponents &amp; subassemblies from within parent assembly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781636#M131742</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5011186"&gt;@JelteDeJong&lt;/a&gt;,&amp;nbsp;works perfectly now!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 13:38:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/create-custom-iproperty-for-subcomponents-amp-subassemblies-from/m-p/10781636#M131742</guid>
      <dc:creator>iogurt1</dc:creator>
      <dc:date>2021-11-25T13:38:54Z</dc:date>
    </item>
  </channel>
</rss>

