- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'd like to know how can I get textual names for types of Browser Nodes presented in Part's browser (Model Tab).
When I add "ToString" after the Type query I still get numeric value like:
The iLogic code I'm using is:
Dim oIPT As PartDocument=ThisDoc.Document
Dim MsgBody As String
For Each oNode In oIPT.BrowserPanes("PmDefault").TopNode.BrowserNodes
If oNode.Visible Then
MsgBody &= oNode.BrowserNodeDefinition.Label & vbCrLf
If Not oNode.NativeObject Is Nothing Then
MsgBody &= " Type : " & oNode.NativeObject.Type.ToString & vbCrLf
End If
End If
Next
MsgBox (MsgBody,,"Node types are:")
Exit SubThe issue described was reproduced in Inventor 2020.2.1
Please vote for Inventor-Idea Text Search within Option Names
Solved! Go to Solution.