<?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: Change the LOD in derived part through iLogic in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3762974#M132637</link>
    <description>&lt;P&gt;Also, where do i define if the link should be broken, supressed og kept active..?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/LSA-Skan&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jan 2013 09:41:04 GMT</pubDate>
    <dc:creator>LSA-skan</dc:creator>
    <dc:date>2013-01-28T09:41:04Z</dc:date>
    <item>
      <title>Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3762928#M132636</link>
      <description>&lt;P&gt;I got this code earlier from Curtis_Waguespack, and i would like to add a setting...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i run this rule it Derives the assembly, but LOD is set to Master, i would like it to be set to my own (Configurator) LOD...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't seem to be able to find anything in this code, that defines LOD...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far im doing ok with the standard ilogic code, but when it´s API or VBA code im lost..&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://forums.autodesk.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt; which leads me to this.. i've been searching the forum back and forth to find a code that performs the feature "Shrinkwrap", and somehow everything i have found so far does not work... even the code example in Inventors help menu under programming help, which several forum posts have suggested... Therefore im trying to solve this with Curtis's code as staring point..&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;set a reference to the assembly component definintion.&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;this assumes an assembly document is open.&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;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;    

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;define the path and file name&lt;/SPAN&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;sPathandName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;sPathandName&lt;/SPAN&gt;  &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;PathAndFileName&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;False&lt;SPAN&gt;)&lt;/SPAN&gt; 

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt; Create a new part file to derive the selected part into &lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;note: kPartDocumentObject is the default template&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;you could specifiy a path and file name for a custom template&lt;/SPAN&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPartDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oPartDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;kPartDocumentObject&lt;/SPAN&gt;, &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;FileManager&lt;/SPAN&gt;.&lt;SPAN&gt;GetTemplateFile&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;kPartDocumentObject&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt; 

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;create the derived assembly deffinition&lt;/SPAN&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDerivedAssemblyDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedAssemblyDefinition&lt;/SPAN&gt; 
&lt;SPAN&gt;oDerivedAssemblyDef&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oPartDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;ReferenceComponents&lt;/SPAN&gt;.&lt;SPAN&gt;DerivedAssemblyComponents&lt;/SPAN&gt;.&lt;SPAN&gt;CreateDefinition&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;sPathandName&lt;/SPAN&gt; &lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;.iam&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Set derive style options&lt;/SPAN&gt;&lt;SPAN&gt;oDerivedAssemblyDef&lt;/SPAN&gt;.&lt;SPAN&gt;DeriveStyle&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;DerivedComponentStyleEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDeriveAsSingleBodyWithSeams&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;options:&lt;/SPAN&gt;    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;kDeriveAsSingleBodyWithSeams &lt;/SPAN&gt;    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;kDeriveAsSingleBodyNoSeams &lt;/SPAN&gt;    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;kDeriveAsMultipleBodies &lt;/SPAN&gt;    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;kDeriveAsWorkSurface &lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Create the derived part&lt;/SPAN&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDerivedAssembly&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DerivedAssemblyComponent&lt;/SPAN&gt; 
&lt;SPAN&gt;oDerivedAssembly&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oPartDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;ReferenceComponents&lt;/SPAN&gt;.&lt;SPAN&gt;DerivedAssemblyComponents&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;oDerivedAssemblyDef&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Jan 2013 08:18:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3762928#M132636</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-28T08:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3762974#M132637</link>
      <description>&lt;P&gt;Also, where do i define if the link should be broken, supressed og kept active..?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/LSA-Skan&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:41:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3762974#M132637</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-28T09:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763775#M132638</link>
      <description>&lt;P&gt;If you already have Configurator LOD defined in Assembly then you to load LOD you have to use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Configurator.active i.,e., LOD.Active&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ti will pop up save window if there are any changes in previous LOD and loads to required (configuratoe) LOD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 04:11:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763775#M132638</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-29T04:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763785#M132639</link>
      <description>&lt;P&gt;Hi There,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a bug in Inventor API documentation which states that ActiveLevelOfDetailRepresentation is read only property i.e. "Property that returns the name of the active Level of Detail Representation for the derived assembly", but ActiveLevelOfDetailRepresentation can be set as shown below. And you can break the link after Derived assembly is created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'Set level of Detail&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;oDerivedAssemblyDef.ActiveLevelOfDetailRepresentation = "LevelOfDetail1"&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;oDerivedAssembly = oPartDoc.ComponentDefinition.ReferenceComponents.DerivedAssemblyComponents.Add(oDerivedAssemblyDef)..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;' Break the link&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#ff0000"&gt;oDerivedAssembly..BreakLinkToFile()&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 05:19:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763785#M132639</guid>
      <dc:creator>nagwani</dc:creator>
      <dc:date>2013-01-29T05:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763790#M132640</link>
      <description>&lt;P&gt;Good To see you back on Forms Mr.Ishwar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how i did for a addin for a client and it is workng fine(till)&lt;/P&gt;&lt;P&gt;is that a good way to activate MasterLOD??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;' Back to Master Level of Detail.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt; Dim oMasterLOD As LevelOfDetailRepresentation&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt; Set oMasterLOD = oDef.RepresentationsManager.LevelOfDetailRepresentations.Item(1)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt; oMasterLOD.Activate&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;SPAN style="line-height: normal;"&gt;And Breaking link is straight process.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 05:36:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763790#M132640</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-29T05:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763812#M132641</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks, your code snippet to Activate/Switch to Master LOD is fine. The advantage with specifying LOD during shrinkwrap through ActiveLevelOfDetailRepresentation is that the API takes care of switching to specified LOD and once the derived part is created the LOD is switched backed to Master.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;-Ishwar&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 06:30:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763812#M132641</guid>
      <dc:creator>nagwani</dc:creator>
      <dc:date>2013-01-29T06:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763816#M132642</link>
      <description>&lt;P&gt;Thanks for all your replys&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution you provided Nagwani, worked &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however, due to my inexperience, im not sure what to put in the () in the break link line..?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/LSA-Skan&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 06:36:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763816#M132642</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-29T06:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763819#M132643</link>
      <description>&lt;P&gt;ADNpati.:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im not sure why you want to switch back to Master LOD, any specific reason for that..?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The assembly im woking on should always be on my custom LOD, cause the master will not make any sense, due to the overflod of diffrent options being ontop of eachother.. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 06:42:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763819#M132643</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-29T06:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763826#M132644</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The derived API would consider current LOD if the ActiveLevelOfDetailRepresentation is not specified. One may have muliple LOD's and if specified LOD is not current LOD, the API takes care of switching to specified LOD and once the derived part is created it swithces to active LOD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Ishwar&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 06:51:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763826#M132644</guid>
      <dc:creator>nagwani</dc:creator>
      <dc:date>2013-01-29T06:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763828#M132645</link>
      <description>&lt;P&gt;yeah, i think im with you on that... but when i used the code i posted in the original post, it changed to the master LOD regardless of what LOD was active at the time... But when i use Shrinkwrap manually, the derived was set to the Active LOD, hence the need for the line you provided &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regarding the ealier post about returning to master LOD like ADNpati, i was just wondering if there was some kind of beneficial reason for returning to master LOD..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you tell me what to put in the () in..:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;oDerivedAssembly..BreakLinkToFile()&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 07:00:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763828#M132645</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-29T07:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763829#M132646</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't have to put anyhing in () in line below, the BreakLinkToFile is a method without any arguments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;oDerivedAssembly.BreakLinkToFile()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Ishwar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 07:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763829#M132646</guid>
      <dc:creator>nagwani</dc:creator>
      <dc:date>2013-01-29T07:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change the LOD in derived part through iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763831#M132647</link>
      <description>&lt;P&gt;Ahh... i just notced there were 2 dots in the code..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;oDerivedAssembly..BreakLinkToFile() = &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;oDerivedAssembly.BreakLinkToFile() = &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again.. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;your post is accepted as a solution..!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2013 07:08:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-the-lod-in-derived-part-through-ilogic/m-p/3763831#M132647</guid>
      <dc:creator>LSA-skan</dc:creator>
      <dc:date>2013-01-29T07:08:50Z</dc:date>
    </item>
  </channel>
</rss>

