<?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: How do delete the Angle Constraint of Selected Components in Assembly ILogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924450#M109875</link>
    <description>&lt;P&gt;Sorry for my typo when copying the code sample in the second reply from me, and I have updated it. Please copy the code sample in my second reply, and have a try.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2019 05:42:04 GMT</pubDate>
    <dc:creator>Yijiang.Cai</dc:creator>
    <dc:date>2019-07-23T05:42:04Z</dc:date>
    <item>
      <title>How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8922533#M109870</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to delete the Angle Constraint of Components which are selecting by me.&lt;/P&gt;&lt;P&gt;I have tried below Loop code but it showing attached error. Can you please help me to find the error in this code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim oAsm As AssemblyDocument = ThisApplication.ActiveDocument&lt;BR /&gt;Dim oAsmCompDef As AssemblyComponentDefinition = oAsm.ComponentDefinition&lt;BR /&gt;Line1 :&lt;BR /&gt;comp = ThisApplication.CommandManager.Pick(&lt;BR /&gt;SelectionFilterEnum.kAssemblyOccurrenceFilter,&lt;BR /&gt;"Select a components")&lt;BR /&gt;AngleConstraint.Delete(comp)&lt;BR /&gt;GoTo Line1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Manoj Sampath&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 10:43:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8922533#M109870</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T10:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924388#M109871</link>
      <description>&lt;P&gt;Please try the code sample below in the iLogic rule -&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsm&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsm&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
	
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; = &lt;SPAN&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Line1&lt;/SPAN&gt;:
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt;
&lt;SPAN&gt;oComp&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;kAssemblyOccurrenceFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Select a components"&lt;/SPAN&gt;)

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyConstraint&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt;.&lt;SPAN&gt;Constraints&lt;/SPAN&gt;
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;kAngleConstraintObject&lt;/SPAN&gt; &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;kAngleConstraintProxyObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
        &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Delete&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;GoTo&lt;/SPAN&gt; &lt;SPAN&gt;Line1&lt;/SPAN&gt;
&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jul 2019 04:35:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924388#M109871</guid>
      <dc:creator>Yijiang.Cai</dc:creator>
      <dc:date>2019-07-23T04:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924406#M109872</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/491205"&gt;@Yijiang.Cai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;I have faced attached error while select the components. Can you please check and give your suggestion.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Manoj Sampath&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:08:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924406#M109872</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T05:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924426#M109873</link>
      <description>&lt;P&gt;Please use the updated one, and it should be fixed. If it works for you, please accept it as solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsm&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsm&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
	
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; = &lt;SPAN&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Line1&lt;/SPAN&gt; :

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt;
&lt;SPAN&gt;oComp&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;kAssemblyOccurrenceFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Select a components"&lt;/SPAN&gt;)

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oComp&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;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyConstraint&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt;.&lt;SPAN&gt;Constraints&lt;/SPAN&gt;
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;kAngleConstraintObject&lt;/SPAN&gt; &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;kAngleConstraintProxyObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
        &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Delete&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;GoTo&lt;/SPAN&gt; &lt;SPAN&gt;Line1&lt;/SPAN&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:39:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924426#M109873</guid>
      <dc:creator>Yijiang.Cai</dc:creator>
      <dc:date>2019-07-23T05:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924445#M109874</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/491205"&gt;@Yijiang.Cai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Now the error message is not coming, But the Angle constraint not get delete.&lt;/P&gt;&lt;P&gt;I'm working on the Code you have suggested, Please update me if you get solution for this.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Manoj Sampath&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:36:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924445#M109874</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T05:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924450#M109875</link>
      <description>&lt;P&gt;Sorry for my typo when copying the code sample in the second reply from me, and I have updated it. Please copy the code sample in my second reply, and have a try.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:42:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924450#M109875</guid>
      <dc:creator>Yijiang.Cai</dc:creator>
      <dc:date>2019-07-23T05:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924456#M109876</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/491205"&gt;@Yijiang.Cai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used below Code, Is this the one you mention?&lt;/P&gt;&lt;P&gt;Angle constraints not deleting by this code.&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp; &amp;amp; Regards,\&lt;/P&gt;&lt;P&gt;Manoj Sampath&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:45:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924456#M109876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T05:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924460#M109877</link>
      <description>&lt;P&gt;Could you copy and paste the code sample you use here?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:47:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924460#M109877</guid>
      <dc:creator>Yijiang.Cai</dc:creator>
      <dc:date>2019-07-23T05:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924462#M109878</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/491205"&gt;@Yijiang.Cai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry. Below is the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim oAsm As AssemblyDocument&lt;BR /&gt;oAsm = ThisApplication.ActiveDocument&lt;BR /&gt;&lt;BR /&gt;Dim oAsmCompDef As AssemblyComponentDefinition&lt;BR /&gt;oAsmCompDef = oAsm.ComponentDefinition&lt;/P&gt;&lt;P&gt;Line1 :&lt;/P&gt;&lt;P&gt;Dim oComp As ComponentOccurrence&lt;BR /&gt;oComp = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kAssemblyOccurrenceFilter, "Select a components")&lt;/P&gt;&lt;P&gt;If oComp Is Nothing Then&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;Dim oCons As AssemblyConstraint&lt;/P&gt;&lt;P&gt;For Each oCons In oComp.Constraints&lt;BR /&gt;If oCons.Type = kAngleConstraintObject Or oCons.Type = kAngleConstraintProxyObject Then&lt;BR /&gt;oCons.Delete&lt;BR /&gt;End If&lt;BR /&gt;Next&lt;/P&gt;&lt;P&gt;GoTo Line1&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 05:48:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924462#M109878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T05:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924485#M109879</link>
      <description>&lt;P&gt;It works for me when using the code sample. What release of Inventor you are using now?&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsm&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsm&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmCompDef&lt;/SPAN&gt; = &lt;SPAN&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Line1&lt;/SPAN&gt; :

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt;
&lt;SPAN&gt;oComp&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;kAssemblyOccurrenceFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Select a components"&lt;/SPAN&gt;)

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oComp&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;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyConstraint&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oComp&lt;/SPAN&gt;.&lt;SPAN&gt;Constraints&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;ObjectTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kAngleConstraintObject&lt;/SPAN&gt; &lt;SPAN&gt;Or&lt;/SPAN&gt; &lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Type&lt;/SPAN&gt; = &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;ObjectTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kAngleConstraintProxyObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
&lt;SPAN&gt;oCons&lt;/SPAN&gt;.&lt;SPAN&gt;Delete&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;GoTo&lt;/SPAN&gt; &lt;SPAN&gt;Line1&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:00:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924485#M109879</guid>
      <dc:creator>Yijiang.Cai</dc:creator>
      <dc:date>2019-07-23T06:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do delete the Angle Constraint of Selected Components in Assembly ILogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924491#M109880</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/491205"&gt;@Yijiang.Cai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This Code Working for me Now. Thanks for your help.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Manoj Sampath&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:03:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-do-delete-the-angle-constraint-of-selected-components-in/m-p/8924491#M109880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T06:03:38Z</dc:date>
    </item>
  </channel>
</rss>

