<?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: Displaying decimal points for area. in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286941#M3954</link>
    <description>Think this is what zone stamps do (display m² based on project preferences), and since they are basically objects, maybe dig around a bit in the script there to see what is going on?&lt;BR /&gt;
&lt;BR /&gt;
If you mean how to see what the working units are set to, I believe there are some Request statements you can use for Working_lenght_unit etc</description>
    <pubDate>Thu, 26 Apr 2018 09:29:29 GMT</pubDate>
    <dc:creator>Erwin Edel</dc:creator>
    <dc:date>2018-04-26T09:29:29Z</dc:date>
    <item>
      <title>Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286940#M3953</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;Hi,&lt;BR /&gt;
&lt;BR /&gt;
how can I get my object to display the amount of decimal points that my project preferences set?&lt;BR /&gt;
&lt;BR /&gt;
here is my line of code&lt;BR /&gt;

&lt;PRE&gt;standard1 = str(room_area, 3, 2)  + " " + units&lt;/PRE&gt;

Thanks&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 26 Apr 2018 09:04:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286940#M3953</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2018-04-26T09:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286941#M3954</link>
      <description>Think this is what zone stamps do (display m² based on project preferences), and since they are basically objects, maybe dig around a bit in the script there to see what is going on?&lt;BR /&gt;
&lt;BR /&gt;
If you mean how to see what the working units are set to, I believe there are some Request statements you can use for Working_lenght_unit etc</description>
      <pubDate>Thu, 26 Apr 2018 09:29:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286941#M3954</guid>
      <dc:creator>Erwin Edel</dc:creator>
      <dc:date>2018-04-26T09:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286942#M3955</link>
      <description>&lt;BLOCKQUOTE&gt;Erwin wrote:&lt;BR /&gt;Think this is what zone stamps do (display m² based on project preferences), and since they are basically objects, maybe dig around a bit in the script there to see what is going on?&lt;BR /&gt;
&lt;BR /&gt;
If you mean how to see what the working units are set to, I believe there are some Request statements you can use for Working_lenght_unit etc&lt;/BLOCKQUOTE&gt;

My own zone stamp doesn't do this as it is set in the str to 2 decimal points. I need to automate the 2 decimal points to read the project preferences.</description>
      <pubDate>Thu, 26 Apr 2018 09:39:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286942#M3955</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2018-04-26T09:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286943#M3956</link>
      <description>Did a quick dig around in GDL Reference Guide, check page 386, the thing you want to request is AREA_DIMENSION for m²&lt;BR /&gt;
&lt;BR /&gt;
Or as found in the zone stamp:
&lt;PRE&gt;area_form = ""													! Format as set in the Preferences
	rrr = request ("Area_dimension", "", area_form)
	room_area	= str (area_form, Temp_CalcArea)
	gross_area	= str (area_form, Temp_GrossArea)
&lt;/PRE&gt;etc</description>
      <pubDate>Thu, 26 Apr 2018 10:08:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286943#M3956</guid>
      <dc:creator>Erwin Edel</dc:creator>
      <dc:date>2018-04-26T10:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286944#M3957</link>
      <description>Okay I made a bit of progress however I have no idea how to implement the format_string into my string with the area</description>
      <pubDate>Thu, 26 Apr 2018 10:13:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286944#M3957</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2018-04-26T10:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying decimal points for area.</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286945#M3958</link>
      <description>Never mind, I've got it now. Thanks very much for your help.</description>
      <pubDate>Thu, 26 Apr 2018 10:20:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Displaying-decimal-points-for-area/m-p/286945#M3958</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2018-04-26T10:20:23Z</dc:date>
    </item>
  </channel>
</rss>

