<?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: Zone area in GDL in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/581278#M6091</link>
    <description>&lt;P&gt;Look into the label for zones (I know, the GS objects might be quite daunting).&lt;/P&gt;
&lt;P&gt;Keywords: "Builtin.Zone_MeasuredArea" and "request ("Property_Value_Of_Parent",...)".&lt;/P&gt;</description>
    <pubDate>Thu, 21 Dec 2023 00:03:26 GMT</pubDate>
    <dc:creator>runxel</dc:creator>
    <dc:date>2023-12-21T00:03:26Z</dc:date>
    <item>
      <title>Zone area in GDL</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/581266#M6090</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm creating a label to use in mass plans, and I need to get the zone area but can't find a way to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For GLOB_ELEM_TYPE = 9 (fills) I used FILL_SURF and it worked perfectly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I go GLOB_ELEM_TYPE = 11 (zones) I find no equivalent.&lt;/P&gt;
&lt;P&gt;ROOM_AREA does not work, and I couldn't use any requests to get the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any insights on how to do this?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 11:31:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/581266#M6090</guid>
      <dc:creator>danielcastelli</dc:creator>
      <dc:date>2024-09-26T11:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Zone area in GDL</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/581278#M6091</link>
      <description>&lt;P&gt;Look into the label for zones (I know, the GS objects might be quite daunting).&lt;/P&gt;
&lt;P&gt;Keywords: "Builtin.Zone_MeasuredArea" and "request ("Property_Value_Of_Parent",...)".&lt;/P&gt;</description>
      <pubDate>Thu, 21 Dec 2023 00:03:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/581278#M6091</guid>
      <dc:creator>runxel</dc:creator>
      <dc:date>2023-12-21T00:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Zone area in GDL</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/673976#M7917</link>
      <description>&lt;P&gt;For anyone else who find this forum, just want to let everyone know that&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/640"&gt;@runxel&lt;/a&gt;&amp;nbsp;'s comment works.&lt;/P&gt;&lt;P&gt;To further clarify, the script should look something like below;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;n &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; REQUEST &lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Property_Value_Of_Parent'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Builtin.Zone_MeasuredArea'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; type&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; dim1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; dim2&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;temp_calcarea&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;n &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; REQUEST &lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Property_Value_Of_Parent'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Builtin.Zone_NetArea'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; type&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; dim1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt; dim2&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;temp_grossarea&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;!temp_calcarea &amp;nbsp;= ROOM_CALC_AREA&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;!temp_grossarea = ROOM_AREA&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 20 Aug 2025 07:07:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-area-in-GDL/m-p/673976#M7917</guid>
      <dc:creator>Shin Kil</dc:creator>
      <dc:date>2025-08-20T07:07:13Z</dc:date>
    </item>
  </channel>
</rss>

