<?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 Is there a way to turn off visibility of the UCS with ilogic or the API in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8550849#M93643</link>
    <description>&lt;P&gt;The question is in the title - I wasn't able to find an easy way - I'm doing it for screenshots, so I need to toggle it off and on as needed.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jan 2019 22:28:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-01-25T22:28:13Z</dc:date>
    <item>
      <title>Is there a way to turn off visibility of the UCS with ilogic or the API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8550849#M93643</link>
      <description>&lt;P&gt;The question is in the title - I wasn't able to find an easy way - I'm doing it for screenshots, so I need to toggle it off and on as needed.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 22:28:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8550849#M93643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-25T22:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to turn off visibility of the UCS with ilogic or the API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8553307#M93674</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it is possible. Try below iLogic code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oDoc As PartDocument 
oDoc = ThisApplication.ActiveDocument 

Dim oDef As PartComponentDefinition 
oDef = oDoc.ComponentDefinition 

Dim oUCS As UserCoordinateSystem 
For Each oUCS In oDef.UserCoordinateSystems 
	If oUCS.Visible = False Then
		oUCS.Visible = True 'Turn on 	
	Else
		oUCS.Visible = False 'Turn off
	End If 
Next&lt;/PRE&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 05:02:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8553307#M93674</guid>
      <dc:creator>chandra.shekar.g</dc:creator>
      <dc:date>2019-01-28T05:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to turn off visibility of the UCS with ilogic or the API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8554632#M93709</link>
      <description>&lt;P&gt;The UCS did not change with that code - I'm talking about the UCS in the bottom left corner...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's turned off in application options by the "Show Origin 3D Indicator" under "Display"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently I do it manually before taking a series of screenshots with some iLogic code - but it would be nice to toggle it in the macro.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:50:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8554632#M93709</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-28T15:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to turn off visibility of the UCS with ilogic or the API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8554658#M93712</link>
      <description>&lt;P&gt;Look at Application.DisplayOptions.Show3DIndicator, and ShowXYZAxisLabels, and other options to be found.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-way-to-turn-off-visibility-of-the-ucs-with-ilogic-or/m-p/8554658#M93712</guid>
      <dc:creator>JamieVJohnson2</dc:creator>
      <dc:date>2019-01-28T15:56:25Z</dc:date>
    </item>
  </channel>
</rss>

