2018-04-26 11:04 AM
standard1 = str(room_area, 3, 2) + " " + unitsThanks
2018-04-26 11:29 AM
2018-04-26 11:39 AM
Erwin wrote: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.
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?
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
2018-04-26 12:08 PM
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)etc
2018-04-26 12:13 PM
2018-04-26 12:20 PM