<?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: Get the selected element in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275263#M3266</link>
    <description>I assume you're working in the floor plan view? If so, &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Selection_Get&lt;E&gt;&lt;/E&gt; can only get elements that are currently selected – if you can't select it as a user, this function won't retrieve it either. Can you describe the workflow you're trying to achieve? There might be a better solution.</description>
    <pubDate>Wed, 27 Nov 2019 11:27:16 GMT</pubDate>
    <dc:creator>Ralph Wessel</dc:creator>
    <dc:date>2019-11-27T11:27:16Z</dc:date>
    <item>
      <title>Get the selected element</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275262#M3265</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hi.&lt;BR /&gt;I select an element on first level.&lt;BR /&gt;I want to get the element after I switch to the second level.&lt;BR /&gt;ACAPI_Selection_Get the api does't work.&lt;BR /&gt;How can get it ? thanks.&lt;/DIV&gt;</description>
      <pubDate>Thu, 29 Sep 2022 07:56:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275262#M3265</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-29T07:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get the selected element</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275263#M3266</link>
      <description>I assume you're working in the floor plan view? If so, &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Selection_Get&lt;E&gt;&lt;/E&gt; can only get elements that are currently selected – if you can't select it as a user, this function won't retrieve it either. Can you describe the workflow you're trying to achieve? There might be a better solution.</description>
      <pubDate>Wed, 27 Nov 2019 11:27:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275263#M3266</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2019-11-27T11:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get the selected element</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275264#M3267</link>
      <description>&lt;BLOCKQUOTE&gt;Ralph wrote:&lt;BR /&gt;
I assume you're working in the floor plan view? If so, &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Selection_Get&lt;E&gt;&lt;/E&gt; can only get elements that are currently selected – if you can't select it as a user, this function won't retrieve it either. Can you describe the workflow you're trying to achieve? There might be a better solution.
&lt;/BLOCKQUOTE&gt;

Yes,I'm working in the floor plan view.&lt;BR /&gt;
&lt;BR /&gt;
I want to copy the  properties of the selected element to  other elements on another level.&lt;BR /&gt;
Thanks.</description>
      <pubDate>Wed, 27 Nov 2019 12:13:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275264#M3267</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-27T12:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get the selected element</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275265#M3268</link>
      <description>How about:&lt;BR /&gt;
1) Use &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Selection_Get&lt;E&gt;&lt;/E&gt; first to collect the selected elements&lt;BR /&gt;
2) Extract whatever data you need from the selection&lt;BR /&gt;
3) Search for the elements that should receive the new data&lt;BR /&gt;
4) Apply the data to elements (on whatever floor)</description>
      <pubDate>Wed, 27 Nov 2019 12:20:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275265#M3268</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2019-11-27T12:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Get the selected element</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275266#M3269</link>
      <description>&lt;BLOCKQUOTE&gt;Ralph wrote:&lt;BR /&gt;
How about:&lt;BR /&gt;
1) Use &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Selection_Get&lt;E&gt;&lt;/E&gt; first to collect the selected elements&lt;BR /&gt;
2) Extract whatever data you need from the selection&lt;BR /&gt;
3) Search for the elements that should receive the new data&lt;BR /&gt;
4) Apply the data to elements (on whatever floor)
&lt;/BLOCKQUOTE&gt;

Thanks.</description>
      <pubDate>Wed, 27 Nov 2019 12:42:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Get-the-selected-element/m-p/275266#M3269</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-27T12:42:51Z</dc:date>
    </item>
  </channel>
</rss>

