<?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: Selecting Items with API and show selection in GUI in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8965387#M24517</link>
    <description>&lt;P&gt;Hello Rafal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reaction. Unfortunately I could not get around to the debugging until now, but it does not seem to work. The program selects the bars and nodes, but the window does not show anything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found the following in the locals window. The property Me.Robapp.Visible = -1, could that have something to do with it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sub showSelectedLineInRobot()&lt;/P&gt;&lt;P&gt;Dim CurrentRow As Long&lt;BR /&gt;CurrentRow = Selection.row&lt;/P&gt;&lt;P&gt;Set RobApp = New RobotApplication&lt;BR /&gt;Dim RSelection As RobotSelection&lt;BR /&gt;Dim RSelection2 As RobotSelection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'sets the connection node number&lt;BR /&gt;Set RSelection = RobApp.Project.Structure.Selections.Create(I_OT_NODE)&lt;BR /&gt;Dim NodeCol As RobotNodeCollection&lt;BR /&gt;Dim n1 As RobotNode&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 2) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection.FromText Cells(CurrentRow, 2)&lt;/P&gt;&lt;P&gt;Set NodeCol = RobApp.Project.Structure.Nodes.GetMany(RSelection)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No nodes in selection cell B" &amp;amp; Str(CurrentRow))&lt;BR /&gt;Set NodeCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (NodeCol.Count &amp;lt;&amp;gt; 1) Then&lt;BR /&gt;MsgBox ("No Valid Node number in cell B" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter a single existing node number.")&lt;BR /&gt;Exit Sub&lt;BR /&gt;Set NodeCol = Nothing&lt;BR /&gt;Else&lt;BR /&gt;&lt;BR /&gt;Set n1 = NodeCol.Get(1)&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;'set Brace member number&lt;BR /&gt;Set RSelection = RobApp.Project.Structure.Selections.Create(I_OT_BAR)&lt;BR /&gt;Dim BarCol As RobotBarCollection&lt;BR /&gt;Dim Cbar As RobotBar&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 3) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection.FromText Cells(CurrentRow, 3)&lt;BR /&gt;Set BarCol = RobApp.Project.Structure.Bars.GetMany(RSelection)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No bars in selection cell C" &amp;amp; Str(CurrentRow))&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (BarCol.Count &amp;lt;&amp;gt; 1) Then&lt;BR /&gt;MsgBox ("No Valid Bar number in cell C" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter a single existing bar number.")&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;Else&lt;BR /&gt;Set Cbar = BarCol.Get(1)&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;'set Chord member number(s) May be 1 or 2 members&lt;/P&gt;&lt;P&gt;Dim BarCol2 As RobotBarCollection&lt;BR /&gt;Set RSelection2 = RobApp.Project.Structure.Selections.Create(I_OT_BAR)&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 4) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection2.FromText Cells(CurrentRow, 4)&lt;BR /&gt;Set BarCol2 = RobApp.Project.Structure.Bars.GetMany(RSelection2)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No bars in selection cell D" + Str(CurrentRow))&lt;BR /&gt;Set BarCol2 = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (BarCol2.Count &amp;lt;&amp;gt; 1 And BarCol2.Count &amp;lt;&amp;gt; 2) Then&lt;BR /&gt;MsgBox ("No Valid Bar number in cell D" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter 1 or 2 existing bar numbers.")&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;Else&lt;BR /&gt;RSelection2.Add RSelection&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;Dim Rv As RobotView&lt;BR /&gt;Set Rv = RobApp.Project.ViewMngr.GetView(1)&lt;BR /&gt;Dim RVP As RobotViewDisplayParams&lt;BR /&gt;Set RVP = Rv.ParamsDisplay&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_ONLY_FOR_SELECTED_OBJECTS, True&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_NODE_NUMBERS, True&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_BAR_NUMBERS, True&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;RobApp.Project.ViewMngr.Refresh&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help,&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rick Boender&lt;/P&gt;</description>
    <pubDate>Wed, 14 Aug 2019 11:12:52 GMT</pubDate>
    <dc:creator>rick.boender</dc:creator>
    <dc:date>2019-08-14T11:12:52Z</dc:date>
    <item>
      <title>(API) Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8821377#M24515</link>
      <description>&lt;P&gt;I have made a program that selects beams and nodes from values specified in an Excel sheet, this selection is used to extract bar forces at a connection. Now I would like to add a module to check the user input. I would like to select the nodes of bars listed in a certain cell, and have Robot show the selection in the GUI. The problem is, nothing shows if I select items through the API interface (from an Excel macro).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use the following code to select items:&lt;/P&gt;
&lt;P&gt;Set RSelection = RobApp.Project.Structure.Selections.Create(I_OT_NODE)&lt;BR /&gt;Dim NodeCol As RobotNodeCollection&lt;/P&gt;
&lt;P&gt;RSelection.FromText Cells(CurrentRow, 2)&lt;/P&gt;
&lt;P&gt;Set NodeCol = RobApp.Project.Structure.Nodes.GetMany(RSelection)&lt;/P&gt;
&lt;P&gt;This code works perfectly for what it is intended to do, but how can I change it so that the selection will show in the GUI?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for any help.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 07:28:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8821377#M24515</guid>
      <dc:creator>rick.boender</dc:creator>
      <dc:date>2019-05-30T07:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8821491#M24516</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6319439"&gt;@rick.boender&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check&amp;nbsp;DisplaySelection method in macro:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-highlighting-nodes-with-instabilities/td-p/3824275/highlight/true/page/2" target="_blank"&gt;https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-highlighting-nodes-with-instabilities/td-p/3824275/highlight/true/page/2&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 15:28:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8821491#M24516</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2019-05-29T15:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8965387#M24517</link>
      <description>&lt;P&gt;Hello Rafal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reaction. Unfortunately I could not get around to the debugging until now, but it does not seem to work. The program selects the bars and nodes, but the window does not show anything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found the following in the locals window. The property Me.Robapp.Visible = -1, could that have something to do with it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sub showSelectedLineInRobot()&lt;/P&gt;&lt;P&gt;Dim CurrentRow As Long&lt;BR /&gt;CurrentRow = Selection.row&lt;/P&gt;&lt;P&gt;Set RobApp = New RobotApplication&lt;BR /&gt;Dim RSelection As RobotSelection&lt;BR /&gt;Dim RSelection2 As RobotSelection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'sets the connection node number&lt;BR /&gt;Set RSelection = RobApp.Project.Structure.Selections.Create(I_OT_NODE)&lt;BR /&gt;Dim NodeCol As RobotNodeCollection&lt;BR /&gt;Dim n1 As RobotNode&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 2) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection.FromText Cells(CurrentRow, 2)&lt;/P&gt;&lt;P&gt;Set NodeCol = RobApp.Project.Structure.Nodes.GetMany(RSelection)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No nodes in selection cell B" &amp;amp; Str(CurrentRow))&lt;BR /&gt;Set NodeCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (NodeCol.Count &amp;lt;&amp;gt; 1) Then&lt;BR /&gt;MsgBox ("No Valid Node number in cell B" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter a single existing node number.")&lt;BR /&gt;Exit Sub&lt;BR /&gt;Set NodeCol = Nothing&lt;BR /&gt;Else&lt;BR /&gt;&lt;BR /&gt;Set n1 = NodeCol.Get(1)&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;'set Brace member number&lt;BR /&gt;Set RSelection = RobApp.Project.Structure.Selections.Create(I_OT_BAR)&lt;BR /&gt;Dim BarCol As RobotBarCollection&lt;BR /&gt;Dim Cbar As RobotBar&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 3) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection.FromText Cells(CurrentRow, 3)&lt;BR /&gt;Set BarCol = RobApp.Project.Structure.Bars.GetMany(RSelection)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No bars in selection cell C" &amp;amp; Str(CurrentRow))&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (BarCol.Count &amp;lt;&amp;gt; 1) Then&lt;BR /&gt;MsgBox ("No Valid Bar number in cell C" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter a single existing bar number.")&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;Else&lt;BR /&gt;Set Cbar = BarCol.Get(1)&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;'set Chord member number(s) May be 1 or 2 members&lt;/P&gt;&lt;P&gt;Dim BarCol2 As RobotBarCollection&lt;BR /&gt;Set RSelection2 = RobApp.Project.Structure.Selections.Create(I_OT_BAR)&lt;BR /&gt;&lt;BR /&gt;If (Cells(CurrentRow, 4) &amp;lt;&amp;gt; "") Then&lt;BR /&gt;RSelection2.FromText Cells(CurrentRow, 4)&lt;BR /&gt;Set BarCol2 = RobApp.Project.Structure.Bars.GetMany(RSelection2)&lt;BR /&gt;Else&lt;BR /&gt;MsgBox ("No bars in selection cell D" + Str(CurrentRow))&lt;BR /&gt;Set BarCol2 = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;If (BarCol2.Count &amp;lt;&amp;gt; 1 And BarCol2.Count &amp;lt;&amp;gt; 2) Then&lt;BR /&gt;MsgBox ("No Valid Bar number in cell D" &amp;amp; Str(CurrentRow) &amp;amp; ", please enter 1 or 2 existing bar numbers.")&lt;BR /&gt;Set BarCol = Nothing&lt;BR /&gt;Exit Sub&lt;BR /&gt;Else&lt;BR /&gt;RSelection2.Add RSelection&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;Dim Rv As RobotView&lt;BR /&gt;Set Rv = RobApp.Project.ViewMngr.GetView(1)&lt;BR /&gt;Dim RVP As RobotViewDisplayParams&lt;BR /&gt;Set RVP = Rv.ParamsDisplay&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_ONLY_FOR_SELECTED_OBJECTS, True&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_NODE_NUMBERS, True&lt;BR /&gt;RVP.Set I_VDA_STRUCTURE_BAR_NUMBERS, True&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;RobApp.Project.ViewMngr.Refresh&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help,&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rick Boender&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 11:12:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/8965387#M24517</guid>
      <dc:creator>rick.boender</dc:creator>
      <dc:date>2019-08-14T11:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13674953#M84924</link>
      <description>&lt;P&gt;I got Access Denied, can you please share it openly? Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 15:16:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13674953#M84924</guid>
      <dc:creator>carlos_meri</dc:creator>
      <dc:date>2025-06-10T15:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: (API) Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13675455#M84925</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17208361"&gt;@carlos_meri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When working with selections, you must use the Get method instead of Create to instantiate your selection.&lt;/P&gt;
&lt;P&gt;While both methods allow for selection, only Get enables interaction with the view.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At Autodesk’s initiative (see &lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/community-content-archiving/m-p/13192733" target="_blank" rel="noopener"&gt;topic&lt;/A&gt;), older topics, though still valuable, have been deleted and not archived. However, you can still access copies via the links below.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-highlight-nodes-in-robot/td-p/9537059" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-highlight-nodes-in-robot/td-p/9537059&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The previous method used to display nodes with instabilities is now less relevant, as this functionality is now integrated directly into the program.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-highlighting-nodes-with-instabilities/td-p/13212184" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-highlighting-nodes-with-instabilities/td-p/13212184&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 16:22:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13675455#M84925</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-06-11T16:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: (API) Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13676250#M84927</link>
      <description>&lt;P&gt;thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6876621"&gt;@Stephane.kapetanovic&lt;/a&gt;&amp;nbsp;for the fast response,&amp;nbsp;&lt;BR /&gt;it works using Get instead of Create&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Python example:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;selection&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;RobotOM&lt;/SPAN&gt;&lt;SPAN&gt;.RobotSelection(&lt;/SPAN&gt;&lt;SPAN&gt;RobotObject&lt;/SPAN&gt;&lt;SPAN&gt;.Project.Structure.Selections.Get(&lt;/SPAN&gt;&lt;SPAN&gt;RobotOM&lt;/SPAN&gt;&lt;SPAN&gt;.IRobotObjectType.I_OT_PANEL))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;selection&lt;/SPAN&gt;&lt;SPAN&gt;.AddText(&lt;/SPAN&gt;&lt;SPAN&gt;"131 183"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 08:00:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13676250#M84927</guid>
      <dc:creator>carlos_meri</dc:creator>
      <dc:date>2025-06-11T08:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: (API) Selecting Items with API and show selection in GUI</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13676329#M84929</link>
      <description>&lt;P&gt;Remember that &lt;CODE data-start="71" data-end="80"&gt;AddText&lt;/CODE&gt; appends to the existing selection, while &lt;CODE data-start="122" data-end="132"&gt;FromText&lt;/CODE&gt; replaces it with the new text&lt;/P&gt;
&lt;LI-CODE lang="visual"&gt;selection.FromText("131 183")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 09:00:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-selecting-items-with-api-and-show-selection-in-gui/m-p/13676329#M84929</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-06-11T09:00:45Z</dc:date>
    </item>
  </channel>
</rss>

