<?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 How to get all Category and their parameter in ArchiCAD API? in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-get-all-Category-and-their-parameter-in-ArchiCAD-API/m-p/595594#M9260</link>
    <description>&lt;P&gt;Hi guys,&lt;/P&gt;
&lt;P&gt;Could you help me with this question?&lt;/P&gt;
&lt;P&gt;I want to know all the parameters that can be added to the schedule (using the 'add fields' button), as shown in the image below.&lt;/P&gt;
&lt;P&gt;If you can assist me with this, please explain how to obtain them.&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-03-19_16-08-07.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/71804i1CF34F22166E9168/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-03-19_16-08-07.png" alt="2024-03-19_16-08-07.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Sep 2024 12:48:17 GMT</pubDate>
    <dc:creator>Tran Thanh Lo</dc:creator>
    <dc:date>2024-09-16T12:48:17Z</dc:date>
    <item>
      <title>How to get all Category and their parameter in ArchiCAD API?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-get-all-Category-and-their-parameter-in-ArchiCAD-API/m-p/595594#M9260</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;
&lt;P&gt;Could you help me with this question?&lt;/P&gt;
&lt;P&gt;I want to know all the parameters that can be added to the schedule (using the 'add fields' button), as shown in the image below.&lt;/P&gt;
&lt;P&gt;If you can assist me with this, please explain how to obtain them.&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-03-19_16-08-07.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/71804i1CF34F22166E9168/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-03-19_16-08-07.png" alt="2024-03-19_16-08-07.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 12:48:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-get-all-Category-and-their-parameter-in-ArchiCAD-API/m-p/595594#M9260</guid>
      <dc:creator>Tran Thanh Lo</dc:creator>
      <dc:date>2024-09-16T12:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to get all Category and their parameter in ArchiCAD API?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-get-all-Category-and-their-parameter-in-ArchiCAD-API/m-p/596136#M9268</link>
      <description>&lt;P&gt;Here is a sample code to access all property groups and properties. This will list user-defined properties (the ones you see in Property Manager) and also built-in properties (the ones you can use in schedules or in find and select).&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;void DumpAllProperties ()
{
    GS::Array&amp;lt;API_PropertyGroup&amp;gt; groups;
    ACAPI_Property_GetPropertyGroups (groups);
    for (const API_PropertyGroup&amp;amp; group : groups) {
        GS::Array&amp;lt;API_PropertyDefinition&amp;gt; definitions;
        ACAPI_Property_GetPropertyDefinitions (group.guid, definitions);
        for (const API_PropertyDefinition&amp;amp; definition : definitions) {
            GS::UniString report = group.name + "\t" + definition.name + "\t" + APIGuidToString (definition.guid) + "\t" + (definition.canValueBeEditable ? "Editable" : "Read Only");
            ACAPI_WriteReport (report, false);
        }
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2024 07:21:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-get-all-Category-and-their-parameter-in-ArchiCAD-API/m-p/596136#M9268</guid>
      <dc:creator>Viktor Kovacs</dc:creator>
      <dc:date>2024-03-25T07:21:59Z</dc:date>
    </item>
  </channel>
</rss>

