<?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: Component.Isavtive vs Feature.Isactive in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095855#M53009</link>
    <description>&lt;P&gt;Thank you for the explanation.&lt;BR /&gt;But how can I turn on and off a retagular pattern in an assembly (* .iam)? I have created a user parameter for number and a user parameter for distance. But now I have problems with controlling this, because I thought I had written a good code anyway&lt;/P&gt;</description>
    <pubDate>Fri, 19 Feb 2021 11:36:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-02-19T11:36:58Z</dc:date>
    <item>
      <title>Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095738#M53006</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;I am struggling with the terms "Component.Isactive" and "Feature.Isactive".&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;If I have an assembly (* .iam) with a Pattern in it, is this a "Component" or a "Feature"?&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;And how is this if this is in a part (* .ipt)?&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;Hopefully someone has an explanation for this so that I understand where I make mistakes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;Thank you,&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" style="font-family: inherit;"&gt;Joop&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 10:33:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095738#M53006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-19T10:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095819#M53007</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're trying to control features in the part file (.ipt) or in assembly (.iam) then you should go for, (whether it's a pattern or features, it'll work for both)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'To unsuppress the feature&lt;BR /&gt;Feature&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"NameOfthefeature"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;BR /&gt;'To suppress the feature&lt;BR /&gt;Feature.IsActive("NameOfthefeature") = False&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If you're trying to control components state in the assembly file (.iam) then you should go for,&amp;nbsp;(whether it's a pattern or parts, it'll work for both)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'to suppress the component&lt;BR /&gt;component&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"nameOftheOccurance"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;BR /&gt;'to unsuppress the component&lt;BR /&gt;component.IsActive("nameOftheOccurance") = True&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:14:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095819#M53007</guid>
      <dc:creator>bhavik4244</dc:creator>
      <dc:date>2021-02-19T11:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095836#M53008</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whenever you are inside and part file(.ipt), the only thing you can use is Feature.IsActive. The reason is that inside an ipt file, whatever you are creating is using features (e.g Extrude, Revolve, Hole, Fillet, etc.) No Component.IsActive is applicable when you are inside an ipt file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Assembly files (iam), You can also create features (Extrude, Revolve, Hole, etc.) inside it and then use part files(ipt) to place and constraint it. Now when you are targetting features, you need to use Feature.IsActive in assembly, but when you are targetting components (ipt or iam files), you need to use Component.IsActive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now In the case of patterns inside the assembly, please note that if you are creating a pattern of Features (e.g. Extrude, Revolve, Hole, etc.) you need to use Features.IsActive to either suppress or unsuppress. On the other hand, if you are creating a pattern of Components (ipt or iam files), you need to use Component.IsActive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this has cleared the confusion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:22:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095836#M53008</guid>
      <dc:creator>dutt.thakar</dc:creator>
      <dc:date>2021-02-19T11:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095855#M53009</link>
      <description>&lt;P&gt;Thank you for the explanation.&lt;BR /&gt;But how can I turn on and off a retagular pattern in an assembly (* .iam)? I have created a user parameter for number and a user parameter for distance. But now I have problems with controlling this, because I thought I had written a good code anyway&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:36:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095855#M53009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-19T11:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095863#M53010</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you post your code here? it would give more insight where could be the issue&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:39:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095863#M53010</guid>
      <dc:creator>bhavik4244</dc:creator>
      <dc:date>2021-02-19T11:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095945#M53011</link>
      <description>&lt;P&gt;i&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Select Case DraairichtingPoort&lt;BR /&gt;&lt;BR /&gt;Case "DIN Links"&lt;BR /&gt;'Suppressen onderdelen aanslag Din Rechts&lt;BR /&gt;Component.IsActive("1043_977:2") = False&lt;BR /&gt;Component.IsActive("1013_456:2") = False&lt;BR /&gt;Component.IsActive("ComponentPatternDinRechts") = False&lt;BR /&gt;Component.IsActive("1013_453:2") = False&lt;BR /&gt;&lt;BR /&gt;'UNSuppressen onderdelen aanslag Din Links&lt;BR /&gt;Component.IsActive("1043_977_22") = True&lt;BR /&gt;Component.IsActive("1013_456_23") = True&lt;BR /&gt;Component.IsActive("ComponentPatternDinLinks") = True&lt;BR /&gt;Component.IsActive("1013_453_26") = True&lt;BR /&gt;&lt;BR /&gt;PlaatOfPlankDikte = PlankOfPlaatVoorkant&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Case "DIN Rechts"&lt;BR /&gt;'Suppressen onderdelen aanslag Din Links&lt;BR /&gt;Component.IsActive("1043_977_22") = False&lt;BR /&gt;Component.IsActive("1013_456_23") = False&lt;BR /&gt;Component.IsActive("ComponentPatternDinLinks") = False&lt;BR /&gt;Component.IsActive("1013_453_26") = False&lt;BR /&gt;&lt;BR /&gt;'UNSuppressen onderdelen aanslag Din Rechts&lt;BR /&gt;Component.IsActive("1043_977:2") = True&lt;BR /&gt;Component.IsActive("1013_456:2") = True&lt;BR /&gt;Component.IsActive("ComponentPatternDinRechts") = True&lt;BR /&gt;Component.IsActive("1013_453:2") = True&lt;BR /&gt;&lt;BR /&gt;PlaatOfPlankDikte = PlankOfPlaatAchterkant&lt;BR /&gt;&lt;BR /&gt;'Updaten rule&lt;BR /&gt;Parameter.UpdateAfterChange = True&lt;BR /&gt;RuleParametersOutput()&lt;BR /&gt;InventorVb.DocumentUpdate()&lt;BR /&gt;iLogicVb.UpdateWhenDone = True&lt;BR /&gt;&lt;BR /&gt;End Select&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Select Case Slotkeuze&lt;BR /&gt;&lt;BR /&gt;Case Fortylock&lt;BR /&gt;AantalBlokkenSlot = 0 ul&lt;/P&gt;&lt;P&gt;Case Fiftylock&lt;BR /&gt;AantalBlokkenSlot = 1 ul&lt;BR /&gt;&lt;BR /&gt;Case Sixtylock&lt;BR /&gt;AantalBlokkenSlot = 2 ul&lt;/P&gt;&lt;P&gt;Parameter.UpdateAfterChange = True&lt;BR /&gt;RuleParametersOutput()&lt;BR /&gt;InventorVb.DocumentUpdate()&lt;BR /&gt;iLogicVb.UpdateWhenDone = True&lt;/P&gt;&lt;P&gt;End Select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;'Array Din Links&lt;BR /&gt;ArrayBlokkenDinLinks = (AantalBlokkenSlot + ArrayBlokkenPlaat)&lt;/P&gt;&lt;P&gt;'Array Din Rechts&lt;BR /&gt;ArrayBlokkenDinRechts = (AantalBlokkenSlot + ArrayBlokkenPlaat)&lt;/P&gt;&lt;P&gt;'Bepalen som van aantal affstandsblokken bij Din Rechts&lt;BR /&gt;If ArrayBlokkenDinRechts = 0 Then&lt;BR /&gt;Component.IsActive("ComponentPatternDinRechts") = False&lt;BR /&gt;Component.IsActive("1013_453:2") = False&lt;BR /&gt;AfstandAanslagDinRechts = 0&lt;BR /&gt;&lt;BR /&gt;Else&lt;BR /&gt;Component.IsActive("ComponentPatternDinRechts") = True&lt;BR /&gt;Component.IsActive("1013_453:2") = True&lt;BR /&gt;AfstandAanslagDinRechts = (ArrayBlokkenDinRechts* DikteAfstandblok)&lt;BR /&gt;&lt;BR /&gt;RuleParametersOutput()&lt;BR /&gt;InventorVb.DocumentUpdate()&lt;BR /&gt;iLogicVb.DocumentUpdate&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;'Bepalen som van aantal affstandsblokken bij Din Links&lt;BR /&gt;If ArrayBlokkenDinLinks = 0 Then&lt;BR /&gt;Component.IsActive("ComponentPatternDinLinks") = False&lt;BR /&gt;Component.IsActive("1013_453_26") = False&lt;BR /&gt;AfstandAanslagDinLinks = 0&lt;BR /&gt;&lt;BR /&gt;Else&lt;BR /&gt;Component.IsActive("ComponentPatternDinLinks") = True&lt;BR /&gt;Component.IsActive("1013_453_26") = True&lt;BR /&gt;AfstandAanslagDinLinks = (ArrayBlokkenDinLinks * DikteAfstandblok)&lt;BR /&gt;&lt;BR /&gt;RuleParametersOutput()&lt;BR /&gt;InventorVb.DocumentUpdate()&lt;BR /&gt;iLogicVb.DocumentUpdate&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;'Bepaling benodigde afstandsblokken ivm plank of plaat&lt;BR /&gt;''' Bepaling van de benodigd aantal opvulblokken in verband met plaat of planken op de poortvleugel&lt;BR /&gt;''' Deze code is UNIVERSEEL, de draairichting bepaald welke parameter wordt toegepast&lt;BR /&gt;''' DIN Links dan wordt PlaatOfPlankDikteVoorkant gebruikt&lt;BR /&gt;''' DIN Rechts dan wordt PlaatOfPlankDikteVoorkant gebruikt&lt;BR /&gt;'''&lt;/P&gt;&lt;P&gt;Dim Dikte As Double&lt;BR /&gt;Dikte = PlaatOfPlankDikte&lt;/P&gt;&lt;P&gt;If Dikte = 0 Then&lt;BR /&gt;ArrayBlokkenPlaat = 0 ul&lt;BR /&gt;&lt;BR /&gt;Else If Dikte &amp;gt; 1 And Dikte &amp;lt;= 5 Then&lt;BR /&gt;ArrayBlokkenPlaat = 1 ul&lt;BR /&gt;&lt;BR /&gt;Else If Dikte &amp;gt; 5 And Dikte &amp;lt;= 10 Then&lt;BR /&gt;ArrayBlokkenPlaat = 2 ul&lt;BR /&gt;&lt;BR /&gt;Else If Dikte &amp;gt;10 And Dikte &amp;lt;= 15 Then&lt;BR /&gt;ArrayBlokkenPlaat = 3 ul&lt;BR /&gt;&lt;BR /&gt;Else If Dikte &amp;gt; 15 And Dikte &amp;lt;= 20 Then&lt;BR /&gt;ArrayBlokkenPlaat = 4 ul&lt;BR /&gt;MessageBox.Show("Indien nodig ter hoogte van tegensluiting uitsparing maken in plaat of plank!", "Melding")&lt;BR /&gt;&lt;BR /&gt;Else If Dikte &amp;gt; 20 Then&lt;BR /&gt;MessageBox.Show("De afstand hart frame tot aan aanslag tegensluiting is te groot! Plaat of planken ter hoogte van tegensluiting uitsparen!", "Melding")&lt;BR /&gt;&lt;BR /&gt;Parameter.UpdateAfterChange = True&lt;BR /&gt;RuleParametersOutput()&lt;BR /&gt;InventorVb.DocumentUpdate()&lt;BR /&gt;iLogicVb.UpdateWhenDone = True&lt;BR /&gt;&lt;BR /&gt;End If&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 12:19:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095945#M53011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-19T12:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095982#M53012</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this as a new rule,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;DraairichtingPoort&lt;/SPAN&gt; = &lt;SPAN&gt;"DIN Links"&lt;/SPAN&gt; &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;ArrayBlokkenDinRechts&lt;/SPAN&gt; = 0
	
	&lt;SPAN&gt;Component&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"ComponentPatternDinRechts"&lt;/SPAN&gt;) = &lt;SPAN&gt;False&lt;/SPAN&gt;

&lt;SPAN&gt;Else&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;DraairichtingPoort&lt;/SPAN&gt; = &lt;SPAN&gt;"DIN Rechts"&lt;/SPAN&gt; &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;ArrayBlokkenDinRechts&lt;/SPAN&gt; &amp;lt;&amp;gt; 0
	
	&lt;SPAN&gt;Component&lt;/SPAN&gt;.&lt;SPAN&gt;IsActive&lt;/SPAN&gt;(&lt;SPAN&gt;"ComponentPatternDinRechts"&lt;/SPAN&gt;) = &lt;SPAN&gt;True&lt;/SPAN&gt;

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentUpdate&lt;/SPAN&gt;()
&lt;SPAN&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 12:36:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10095982#M53012</guid>
      <dc:creator>bhavik4244</dc:creator>
      <dc:date>2021-02-19T12:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10097182#M53013</link>
      <description>&lt;P&gt;It looks like you are trying to use Component.IsActive() to turn component patterns on/off.&amp;nbsp; That is probably where the problem is.&amp;nbsp; I don't think that is possible.&amp;nbsp; You may have to suppress that pattern object, or loop through all possible sub-patterns and suppress (or set visibility to off) for each component within.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2021/ENU/?guid=GUID-86BB7FA3-9D6D-4218-B98B-A75DEB70E249" target="_blank" rel="noopener"&gt;OccurrencePatterns Object&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2021/ENU/?guid=GUID-C56859E9-A37F-4C8D-8848-8A74B66DC29C" target="_blank" rel="noopener"&gt;OccurrencePatterns.AddRectangularPattern Method&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2021/ENU/?guid=GUID-CF34968F-9511-4A9A-81BD-4DA922727447" target="_blank" rel="noopener"&gt;RectangularOccurrencePattern Object&lt;/A&gt;&amp;nbsp;&lt;/P&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 style="background-color: green; color: white;"&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;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/SPAN&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 19:58:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10097182#M53013</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-02-19T19:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10101399#M53014</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6716856"&gt;@bhavik4244&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the code, do i have to change the code i posted? or does this new rule jusst added?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10101399#M53014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-22T09:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10101418#M53015</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As long as it serves your purpose make it a new rule &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 10:07:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10101418#M53015</guid>
      <dc:creator>bhavik4244</dc:creator>
      <dc:date>2021-02-22T10:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Component.Isavtive vs Feature.Isactive</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10104510#M53016</link>
      <description>&lt;P&gt;Whoop, Whoop, It works!!!!!&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next step changing Description in Bill of Materials.......&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 10:42:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/component-isavtive-vs-feature-isactive/m-p/10104510#M53016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-23T10:42:02Z</dc:date>
    </item>
  </channel>
</rss>

