<?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: iLogic and Form Combination To Control View Representations and Positions in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11446587#M143183</link>
    <description>&lt;P&gt;FYI, less text using&amp;nbsp;RepresentationsManager......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;Position&lt;/SPAN&gt;

	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Sitting"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Sitting"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Reaching"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Reaching"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Working"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Working"&lt;/SPAN&gt; 
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&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;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;DesignViewRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oViewRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&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;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;PositionalRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPosRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 26 Sep 2022 20:41:48 GMT</pubDate>
    <dc:creator>SteveK88</dc:creator>
    <dc:date>2022-09-26T20:41:48Z</dc:date>
    <item>
      <title>iLogic and Form Combination To Control View Representations and Positions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234335#M139300</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a model that needs 10 positions and 35 view representations.&amp;nbsp; This is due to us having 10 Types of item and they can be configured in different positions.&amp;nbsp; Ideally I would like to be able to toggle the position and view representations by means of a form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wondering if this can be achieved by means of a multiple-value text parameter.&amp;nbsp; For example if the text parameter was "Product Type 1" the code would give it "View 1" and "Position 1".&amp;nbsp; If the code was easy enough to work with I can copy and paste the lines in the same iLogic code for each position - ie "Product Type 2" = "View 2" + "Position 1".&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, if it makes things simpler, I could create a view representation &lt;U&gt;and&lt;/U&gt; a positional representation with matching names that would be equal to the text parameter.&amp;nbsp; If the code can handle that and apply the view and position to match the multi-value text parameter chosen, I can work with that also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this achievable?&amp;nbsp; The whole purpose is to streamline the model so users can check clashes in different positions with different items in the machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 14:43:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234335#M139300</guid>
      <dc:creator>Cadderman</dc:creator>
      <dc:date>2022-06-14T14:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic and Form Combination To Control View Representations and Positions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234654#M139303</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5123017"&gt;@Cadderman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this should work. The first example sets the list and uses an input box (rather than a form) ... but if you had the form and list already set up you could use something like the 2nd example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Curtis_Waguespack_1-1655225771167.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1079734i1698D481082BD091/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Curtis_Waguespack_1-1655225771167.png" alt="Curtis_Waguespack_1-1655225771167.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1st example&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;oTrigger&lt;/SPAN&gt; = &lt;SPAN&gt;ProductConfig&lt;/SPAN&gt;
&lt;SPAN&gt;MultiValue&lt;/SPAN&gt;.&lt;SPAN&gt;SetList&lt;/SPAN&gt;(&lt;SPAN&gt;"ProductConfig"&lt;/SPAN&gt;, &lt;SPAN&gt;"Product Type 1"&lt;/SPAN&gt;, &lt;SPAN&gt;"Product Type 2"&lt;/SPAN&gt;)

&lt;SPAN&gt;oInput&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Prompt"&lt;/SPAN&gt;, &lt;SPAN&gt;MultiValue&lt;/SPAN&gt;.&lt;SPAN&gt;List&lt;/SPAN&gt;(&lt;SPAN&gt;"ProductConfig"&lt;/SPAN&gt;), _
&lt;SPAN&gt;""&lt;/SPAN&gt;, &lt;SPAN&gt;"iLogic"&lt;/SPAN&gt;, &lt;SPAN&gt;"List"&lt;/SPAN&gt;)

&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oInput&lt;/SPAN&gt; = &lt;SPAN&gt;""&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt; &lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;'exit rule&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;DesignViewRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oInput&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;PositionalRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oInput&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2nd example&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;DesignViewRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;ProductConfig&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;PositionalRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;ProductConfig&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 16:58:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234654#M139303</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2022-06-14T16:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic and Form Combination To Control View Representations and Positions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234672#M139304</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5123017"&gt;@Cadderman&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;For the case with more View reps than positional reps, where multiple products use the same positional reps, you could use something like this ( assuming the parameter list and form are already set up).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Curtis_Waguespack_0-1655226335635.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1079743iA77234977B4E299D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Curtis_Waguespack_0-1655226335635.png" alt="Curtis_Waguespack_0-1655226335635.png" /&gt;&lt;/span&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;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;ProductConfig&lt;/SPAN&gt;

	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Product Type 1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Product &lt;STRONG&gt;Type 1&lt;/STRONG&gt;"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"&lt;STRONG&gt;PosView1&lt;/STRONG&gt;"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Product Type 2"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Product Type 2"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"PosView2"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Product Type 3"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Product &lt;STRONG&gt;Type 3&lt;/STRONG&gt;"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"&lt;STRONG&gt;PosView1&lt;/STRONG&gt;" &lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&lt;/SPAN&gt;


&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;DesignViewRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oViewRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;
&lt;SPAN&gt;oDef&lt;/SPAN&gt;.&lt;SPAN&gt;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;PositionalRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPosRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 17:08:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11234672#M139304</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2022-06-14T17:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic and Form Combination To Control View Representations and Positions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11236025#M139337</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the codes! I'm just trying to use them in a test model to try out the iLogic.&amp;nbsp; It works great, thank you so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2022 07:41:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11236025#M139337</guid>
      <dc:creator>Cadderman</dc:creator>
      <dc:date>2022-06-15T07:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic and Form Combination To Control View Representations and Positions</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11446587#M143183</link>
      <description>&lt;P&gt;FYI, less text using&amp;nbsp;RepresentationsManager......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;Position&lt;/SPAN&gt;

	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Sitting"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Sitting"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Reaching"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Reaching"&lt;/SPAN&gt;
	&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"Working"&lt;/SPAN&gt;
		&lt;SPAN&gt;oViewRep&lt;/SPAN&gt; = &lt;SPAN&gt;"View1"&lt;/SPAN&gt;
		&lt;SPAN&gt;oPosRep&lt;/SPAN&gt; = &lt;SPAN&gt;"Working"&lt;/SPAN&gt; 
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&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;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;DesignViewRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oViewRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&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;RepresentationsManager&lt;/SPAN&gt;.&lt;SPAN&gt;PositionalRepresentations&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPosRep&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Sep 2022 20:41:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-and-form-combination-to-control-view-representations-and/m-p/11446587#M143183</guid>
      <dc:creator>SteveK88</dc:creator>
      <dc:date>2022-09-26T20:41:48Z</dc:date>
    </item>
  </channel>
</rss>

