<?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 to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878222#M151087</link>
    <description>&lt;P&gt;Also, if the purpose of your routine is to find and return a WorkPlaneProxy, then why not make it a Function instead of a Sub routine.&amp;nbsp; Functions are use to 'return' something, while a Sub is just to 'do' something, without returning anything.&amp;nbsp; If you change your routine to a Function, then leave out the 'input' WorkPlane or WorkPlaneProxy type object, leaving just the assembly document and plane name, then at the end of the 'definition' line, put "As WorkPlaneProxy" (without the quotes.&amp;nbsp; Then when you get the reference to the WorkPlaneProxy, use "Return oMyWorkplaneProxy" (without the quotes, and with the variable you were using).&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 17:29:04 GMT</pubDate>
    <dc:creator>WCrihfield</dc:creator>
    <dc:date>2023-04-06T17:29:04Z</dc:date>
    <item>
      <title>How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11876482#M151051</link>
      <description>&lt;P&gt;I am unsuccessful in my attempt to create a component mate constraint between an assembly workplane and a part workplane from a second assembly, where both are inserted in a 'Master Assembly', (MA)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an assembly that I create reference workplanes, driven from an .xlsx file. (lets call this my 'Reference Assembly', RA). I am trying to create a rule that allows me to place an assembly and the rule automatically creates mate/flush constraints with this 'New Assembly'(NA). My rule works when I try to create a mate between planes located within the RA and the NA.&amp;nbsp; I can not figure out how to create a component mate between a plane located within a .ipt in my 'New Assembly' and a plane located inside my RA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a subroutine to loop through my NA to locate the required workplane&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;FindSubPlane&lt;/SPAN&gt;(NA.&lt;SPAN&gt;Definition&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;, &lt;SPAN&gt;SrchWPlane&lt;/SPAN&gt;, &lt;SPAN&gt;"PlaneName"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Where NA references my freshly inserted assembly from a FileDialog&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;NA&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;aDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveEditDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;acomDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;aDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;NA&lt;/SPAN&gt; = &lt;SPAN&gt;acomDef&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;.&lt;SPAN&gt;Add&lt;/SPAN&gt;(&lt;SPAN&gt;File&lt;/SPAN&gt;, &lt;SPAN&gt;InMatrix&lt;/SPAN&gt;)&lt;BR /&gt;NA.&lt;SPAN&gt;Grounded&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My subroutine is as follows;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;FindSubPlane&lt;/SPAN&gt;(&lt;SPAN&gt;aDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;, &lt;SPAN&gt;ByRef&lt;/SPAN&gt; &lt;SPAN&gt;PPlane&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;WorkPlane&lt;/SPAN&gt;, &lt;SPAN&gt;PName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;)&lt;BR /&gt;'^^^^ I have also tried defining PPlane As WorkPlaneProxy
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;acomDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;aDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;aOcc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrences&lt;/SPAN&gt; = &lt;SPAN&gt;acomDef&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;MasterP&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String ' MasterP is a parameter inside my .iam file that indicates the Key .ipt within&lt;/SPAN&gt;

	&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;MasterP&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;aDoc&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayName&lt;/SPAN&gt;, &lt;SPAN&gt;"MasterP"&lt;/SPAN&gt;)
	&lt;SPAN&gt;Catch&lt;/SPAN&gt;
		&lt;SPAN&gt;MasterP&lt;/SPAN&gt; = &lt;SPAN&gt;""&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;BR /&gt;&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;GrOcc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;aOcc&lt;/SPAN&gt;
		&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;GrOcc&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;MasterP&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
			&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;SrchPl&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;WorkPlane&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;GrOcc&lt;/SPAN&gt;.&lt;SPAN&gt;Definition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPlanes&lt;/SPAN&gt;
				&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;SrchPl&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;PName&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
					&lt;SPAN&gt;PPlane&lt;/SPAN&gt; = &lt;SPAN&gt;SrchPl&lt;/SPAN&gt;
					&lt;SPAN&gt;'GrOcc.CreateGeometryProxy(SrchPl, PPlane)&lt;/SPAN&gt;
					'&lt;SPAN&gt;^^^ the above line is what I used when I attempted to create the WorkPlaneProxy inside the subroutine&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;Next&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;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The above routine seems to find the correct WorkPlane. (or create my WorkPlaneProxy if that is what I was attempting)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I simply pass back the WorkPlane, I fail at the following;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;NA&lt;/SPAN&gt;.&lt;SPAN&gt;CreateGeometryProxy&lt;/SPAN&gt;(&lt;SPAN&gt;SrchWPlane&lt;/SPAN&gt;, &lt;SPAN&gt;ProxSrchWPlane&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;If I return the WorkPlaneProxy, I fail at the following;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;acomDef&lt;/SPAN&gt;.&lt;SPAN&gt;Constraints&lt;/SPAN&gt;.&lt;SPAN&gt;AddFlushConstraint&lt;/SPAN&gt;(&lt;SPAN&gt;ProxSrchWPlane&lt;/SPAN&gt;, &lt;SPAN&gt;RAProxWPlane&lt;/SPAN&gt;, 0)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above .AddFlush or .AddMateConstraint works fine, If the ProxyPlanes are from the ReferenceAssembly and the NewAssembly.&amp;nbsp; I fails as soon as the ProxyPlane is from an .ipt within the NA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I missing/doing wrong?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 01:52:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11876482#M151051</guid>
      <dc:creator>j3scat</dc:creator>
      <dc:date>2023-04-06T01:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11876599#M151052</link>
      <description>&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;I think your just missing the declaration of a workplaneproxy in this line&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'GrOcc.CreateGeometryProxy(SrchPl, PPlane)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;This should be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim PPlaneProxy as WorkPlaneProxy&lt;BR /&gt;GrOcc.CreateGeometryProxy(SrchPl, PPlaneProxy)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Now use the proxy part plane in the main assembly function. No need for anymore proxies, I think!!. These always trip me up so hopefully I have it right.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a&lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=AssemblyConstraints_AddMateConstraint2_Sample" target="_blank" rel="noopener"&gt; vba sample for guidance&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 03:45:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11876599#M151052</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2023-04-06T03:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878158#M151085</link>
      <description>&lt;P&gt;I appreciate the reply, but I think it doesn't fix my issue, due to missing information from my end.&lt;/P&gt;&lt;P&gt;(When I typed my forum post, for some reason when I hit submit, there was an error and my entire post was lost, the post you read, was my second attempt and I was tired. I left out some info)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to create the workplaneproxy in my subroutine, my sub header would be:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;FindSubPlane&lt;/SPAN&gt;(&lt;SPAN&gt;aDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;, &lt;SPAN&gt;ByRef&lt;/SPAN&gt; &lt;SPAN&gt;PPlane&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;WorkPlane&lt;EM&gt;Proxy&lt;/EM&gt;&lt;/SPAN&gt;, &lt;SPAN&gt;PName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;I would also change the ByRef object type in my Main routine to be a Proxy plane&lt;/P&gt;&lt;P&gt;FindSubPlane(NA.Definition.Document, ProxSrchWPlane, "PlaneName")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I haven't completely worked through your VBA code sample yet, but using its nomenclature as a reference, I have a working subroutine that fairly closely replicates the situation of mating a WorkPlane from oOcc1 and oOcc2.&amp;nbsp; I think my issue is not knowing how to successfully mate a Workplane from oOcc1 and a sub part from oOcc2 (say oOcc2.oOcc2.1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 17:03:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878158#M151085</guid>
      <dc:creator>j3scat</dc:creator>
      <dc:date>2023-04-06T17:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878209#M151086</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2804963"&gt;@j3scat&lt;/a&gt;.&amp;nbsp; When working in assemblies, everything you see in that assembly that comes from a component is a proxy.&amp;nbsp; A proxy is basically a virtual copy of geometry that has been positioned &amp;amp; oriented within the 3D model space (or 'context') of the assembly).&amp;nbsp; Only things like work features or sketches that you create directly within the top level assembly itself will be 'normal/regular' objects, as expected.&amp;nbsp; So the origin planes of the main assembly file will be normal WorkPlanes, but the origin planes of a component will each be a WorkPlaneProxy within the context of a parent assembly.&amp;nbsp; When you need to create constraints or measure stuff between two components, both of those two geometries will need to be proxies.&amp;nbsp; If you are creating a constraint between the main/top assembly origin plane and a plane or face of a component, only the geometry of the component will need to be a proxy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proxies work on a 'per level' basis, so if the component you want to create a constraint to/from is not a top level component within the main assembly (within one or more levels of sub-assemblys), then the simples way to get that geometry will be with the Pick method (automatically returns the top level proxy, if component based).&amp;nbsp; If the Pick method is not an option, then you will need to start from the 'real' object within the base model file of the component, then get the component that represents that model within the sub-assembly and use its CreateGeometryProxy method to get a reference to the geometry's proxy that will be in the context of its parent assembly (in the context of the sub assembly).&amp;nbsp; Then get the component that represents the sub-assembly, and use its CreateGeometryProxy method to get the proxy that is within its parent assembly...and so on, until the proxy is within the context of the top level assembly.&amp;nbsp; It can be a lot of work to do this entirely by code.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 17:22:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878209#M151086</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-04-06T17:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878222#M151087</link>
      <description>&lt;P&gt;Also, if the purpose of your routine is to find and return a WorkPlaneProxy, then why not make it a Function instead of a Sub routine.&amp;nbsp; Functions are use to 'return' something, while a Sub is just to 'do' something, without returning anything.&amp;nbsp; If you change your routine to a Function, then leave out the 'input' WorkPlane or WorkPlaneProxy type object, leaving just the assembly document and plane name, then at the end of the 'definition' line, put "As WorkPlaneProxy" (without the quotes.&amp;nbsp; Then when you get the reference to the WorkPlaneProxy, use "Return oMyWorkplaneProxy" (without the quotes, and with the variable you were using).&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 17:29:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878222#M151087</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-04-06T17:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to I reference a specific componentoccurence within an assembly to then reference the workplanes within that component occurence</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878716#M151091</link>
      <description>&lt;P&gt;Why did I use a Sub instead of a function? Simply because I started with a Sub and just kept modifying that to make things work. Also, along the way, I suspected things worked like your advice directed, but I was trying the wrong approach and had multiple byRef references trying to return everything to the Main Subroutine. I switched my code to Functions. It required a little debugging, but cleaner in the end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply uncommented my CreateGeometryProxy statements located in my Main from when I was simply returning the WorkPlane, not the WorkPlaneProxy. I then and added/switched the statements to use another layer of ProxyPlanes(and or Axes, as the case warranted)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within my Main I switched my CreateGeometryProxy statement from&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;NA&lt;/SPAN&gt;.&lt;SPAN&gt;CreateGeometryProxy&lt;/SPAN&gt;(SrchPlane, &lt;SPAN&gt;ProxSrchPlane&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;to use the now returned ProxySrchPlane&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;NA&lt;/SPAN&gt;.&lt;SPAN&gt;CreateGeometryProxy&lt;/SPAN&gt;(ProxSrchPlane, &lt;SPAN&gt;addProxSrchPlane&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; i was then able to create my constraints with&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;acomDef&lt;/SPAN&gt;.&lt;SPAN&gt;Constraints&lt;/SPAN&gt;.&lt;SPAN&gt;AddMateConstraint&lt;/SPAN&gt;(&lt;SPAN&gt;addProxSrchPlane&lt;/SPAN&gt;, RA&lt;SPAN&gt;ProxWorkPlane&lt;/SPAN&gt;, 0)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I greatly appreciate the help&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 20:48:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/how-to-i-reference-a-specific-componentoccurence-within-an/m-p/11878716#M151091</guid>
      <dc:creator>j3scat</dc:creator>
      <dc:date>2023-04-06T20:48:18Z</dc:date>
    </item>
  </channel>
</rss>

