<?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: Fail to get textual names of Browser Node types with ToString in iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9378332#M106980</link>
    <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/572109"&gt;@Maxim-CADman77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you looking for something like this? &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Main&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oIPT&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oIPT&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserPanes&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"PmDefault"&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;TopNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserNodes&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &amp;amp;= &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserNodeDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Label&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NativeObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Is&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Nothing&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
				&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &amp;amp;= &lt;SPAN style="color: #008080;"&gt;"       Type : "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;GetObjectEnum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NativeObject&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Type&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ToString&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt;, , &lt;SPAN style="color: #008080;"&gt;"Node types are:"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Function&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;GetObjectEnum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oValue&lt;/SPAN&gt;)

	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;EnumType&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TestManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;GetEnumType&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"ObjectTypeEnum"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = 0
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; = 0
	&lt;SPAN style="color: #ff0000;"&gt;Do&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;While&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; &amp;lt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;

		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oValue&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ValueName&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Do&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;MoveNext&lt;/SPAN&gt;


		&lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; + 1
	&lt;SPAN style="color: #ff0000;"&gt;Loop&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Function&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ObjectType.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/741421i92D2B714140C30EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="ObjectType.PNG" alt="ObjectType.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Mar 2020 19:47:03 GMT</pubDate>
    <dc:creator>JhoelForshav</dc:creator>
    <dc:date>2020-03-14T19:47:03Z</dc:date>
    <item>
      <title>Fail to get textual names of Browser Node types with ToString in iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9377817#M106977</link>
      <description>&lt;P&gt;I'd like to know how can I get textual names for types of Browser Nodes presented in Part's browser (Model Tab).&lt;/P&gt;&lt;P&gt;When I add "ToString" after the Type query I still get numeric value like:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BrwsrNodeType_ToString_Issue.png" style="width: 383px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/741278iCAB7B00BE572CE80/image-size/large?v=v2&amp;amp;px=999" role="button" title="BrwsrNodeType_ToString_Issue.png" alt="BrwsrNodeType_ToString_Issue.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The iLogic code I'm using is:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Dim oIPT As PartDocument=ThisDoc.Document
Dim MsgBody As String
For Each oNode In oIPT.BrowserPanes("PmDefault").TopNode.BrowserNodes
	If oNode.Visible Then
		MsgBody &amp;amp;= oNode.BrowserNodeDefinition.Label &amp;amp; vbCrLf
		If Not oNode.NativeObject Is Nothing Then
			MsgBody &amp;amp;= "       Type : " &amp;amp; oNode.NativeObject.Type.ToString &amp;amp; vbCrLf
		End If
	End If
Next
MsgBox (MsgBody,,"Node types are:")
Exit Sub&lt;/LI-CODE&gt;&lt;P&gt;The issue described was reproduced in Inventor 2020.2.1&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2020 09:39:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9377817#M106977</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2020-03-14T09:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Fail to get textual names of Browser Node types with ToString in iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9378332#M106980</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/572109"&gt;@Maxim-CADman77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you looking for something like this? &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Main&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oIPT&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oIPT&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserPanes&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"PmDefault"&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;TopNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserNodes&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &amp;amp;= &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;BrowserNodeDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Label&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NativeObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Is&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Nothing&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
				&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt; &amp;amp;= &lt;SPAN style="color: #008080;"&gt;"       Type : "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;GetObjectEnum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oNode&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;NativeObject&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Type&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ToString&lt;/SPAN&gt;) &amp;amp; &lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;MsgBody&lt;/SPAN&gt;, , &lt;SPAN style="color: #008080;"&gt;"Node types are:"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Function&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;GetObjectEnum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oValue&lt;/SPAN&gt;)

	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;EnumType&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TestManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;GetEnumType&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"ObjectTypeEnum"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = 0
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; = 0
	&lt;SPAN style="color: #ff0000;"&gt;Do&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;While&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; &amp;lt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;

		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oValue&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ValueName&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Do&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oEnumType&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;MoveNext&lt;/SPAN&gt;


		&lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;index&lt;/SPAN&gt; + 1
	&lt;SPAN style="color: #ff0000;"&gt;Loop&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Function&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ObjectType.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/741421i92D2B714140C30EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="ObjectType.PNG" alt="ObjectType.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2020 19:47:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9378332#M106980</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-03-14T19:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fail to get textual names of Browser Node types with ToString in iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9378700#M106985</link>
      <description>&lt;P&gt;Thank for the suggestion, but I also got the single-line solution (&lt;A href="https://forums.autodesk.com/t5/inventor-customization/api-return-enumerator-name-instead-of-numeric-value/m-p/9378571#M106984" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/api-return-enumerator-name-instead-of-numeric-value/m-p/9378571#M106984&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;InstedOf:&lt;/P&gt;&lt;P&gt;oNode.NativeObject.Type.ToString&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&lt;/P&gt;&lt;P&gt;[Enum].GetName(GetType(ObjectTypeEnum), oNode.NativeObject.Type)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...should be used.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 08:13:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/fail-to-get-textual-names-of-browser-node-types-with-tostring-in/m-p/9378700#M106985</guid>
      <dc:creator>Maxim-CADman77</dc:creator>
      <dc:date>2020-03-15T08:13:43Z</dc:date>
    </item>
  </channel>
</rss>

