<?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 GUID of Properties in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253318#M2017</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;Hello everyone,&lt;BR /&gt;&lt;BR /&gt;how do I get the GUID of AC built-in properties like element ID, Room number, etc..? &lt;BR /&gt;when I export a list to excel I only get the GUID of custom properties, but not the built-in properties.&lt;BR /&gt;&lt;BR /&gt;The aim of the question is when I know the GUID of the property then I can change the values by importing an excel file.&lt;BR /&gt;for example, I can export a list with all the Element-IDs, add the GUID to the column, change the values of elements in excel, and import the file again in AC.&lt;BR /&gt;&lt;BR /&gt;P.S: I am using AC 22 so I can't do that with Python. &lt;BR /&gt;&lt;BR /&gt;best regards,&lt;/DIV&gt;</description>
    <pubDate>Tue, 14 Sep 2021 07:52:19 GMT</pubDate>
    <dc:creator>Ady84a</dc:creator>
    <dc:date>2021-09-14T07:52:19Z</dc:date>
    <item>
      <title>GUID of Properties</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253318#M2017</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hello everyone,&lt;BR /&gt;&lt;BR /&gt;how do I get the GUID of AC built-in properties like element ID, Room number, etc..? &lt;BR /&gt;when I export a list to excel I only get the GUID of custom properties, but not the built-in properties.&lt;BR /&gt;&lt;BR /&gt;The aim of the question is when I know the GUID of the property then I can change the values by importing an excel file.&lt;BR /&gt;for example, I can export a list with all the Element-IDs, add the GUID to the column, change the values of elements in excel, and import the file again in AC.&lt;BR /&gt;&lt;BR /&gt;P.S: I am using AC 22 so I can't do that with Python. &lt;BR /&gt;&lt;BR /&gt;best regards,&lt;/DIV&gt;</description>
      <pubDate>Tue, 14 Sep 2021 07:52:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253318#M2017</guid>
      <dc:creator>Ady84a</dc:creator>
      <dc:date>2021-09-14T07:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: GUID of Properties</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253319#M2018</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I had the same topic two years ago when I was trying to creat a door list.&lt;BR /&gt;
Sadly such parameters don't have the possibility to be manipulated. Only properties created with a property manager get a GUID when can then be exported into a XLSX.&lt;BR /&gt;
&lt;BR /&gt;
My plan was also to number rooms automatically in an Excel List. If the task if very time consuming, i would suggest to define new properties for Raumname and Raumnummer, which afterwards get a GUID.&lt;BR /&gt;
&lt;BR /&gt;
Dear Graphisoft friends, is there maybe going to be an improvement about this section?</description>
      <pubDate>Sun, 21 Mar 2021 17:20:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253319#M2018</guid>
      <dc:creator>agroni</dc:creator>
      <dc:date>2021-03-21T17:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: GUID of Properties</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253320#M2019</link>
      <description>Thanks agroni for your answer.&lt;BR /&gt;
I already did what you suggested. But this has drawbacks such as objects inside a room don't recognize the new parameter as a room name. &lt;BR /&gt;
&lt;BR /&gt;
I asked this question for AC22 after I noticed that in AC24 it worked. I did change built-in properties by imporing excel list. I got the GUID by using python, then I copied this GUID to excel, then imported new values to AC24&lt;BR /&gt;
At the moment I am using AC22 in many projects. so I was wondering if there is a way to get the GUID of the built-in properties other than Python. &lt;BR /&gt;
GRAPHISOFT has already solved the problem in AC24 by using python.</description>
      <pubDate>Sun, 21 Mar 2021 19:42:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253320#M2019</guid>
      <dc:creator>Ady84a</dc:creator>
      <dc:date>2021-03-21T19:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: GUID of Properties</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253321#M2020</link>
      <description>Property guids are accessible via the C++ API as well. You can access all of the property guids (even built-in and user-defined) with the functions below:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://archicadapi.graphisoft.com/documentation/acapi_property_getpropertygroups" target="_blank"&gt;&lt;LINK_TEXT text="https://archicadapi.graphisoft.com/docu ... ertygroups"&gt;https://archicadapi.graphisoft.com/documentation/acapi_property_getpropertygroups&lt;/LINK_TEXT&gt;&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://archicadapi.graphisoft.com/documentation/acapi_property_getpropertydefinitions" target="_blank"&gt;&lt;LINK_TEXT text="https://archicadapi.graphisoft.com/docu ... efinitions"&gt;https://archicadapi.graphisoft.com/documentation/acapi_property_getpropertydefinitions&lt;/LINK_TEXT&gt;&lt;/A&gt;</description>
      <pubDate>Tue, 23 Mar 2021 11:32:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/GUID-of-Properties/m-p/253321#M2020</guid>
      <dc:creator>Viktor Kovacs</dc:creator>
      <dc:date>2021-03-23T11:32:52Z</dc:date>
    </item>
  </channel>
</rss>

