Libraries & objects
About Archicad and BIMcloud libraries, their management and migration, objects and other library parts, etc.

GDL Code For Reveal Depth

Anonymous
Not applicable
In Archicad 12, how can the Reveal Depth (under the Reveal Section) be set to 0'-0" using GDL Code?

Is there a Global Variable for this?

Thank you.
2 REPLIES 2
Anonymous
Not applicable
Hello,

You possibly mean this one, just put;

ac_wido_sill=0
parameters ac_wido_sill=ac_wido_sill
...in your value or master script.

It works from 12 on, the documentation can be found here;
<http://www.graphisoft.com/ftp/techsupport/documentation/developer_docs/BasicLibraryDoc/12/LibDevGuid...>


2.2. Door/Window objects

ac_wido_sill - length
This parameter provides full access to the sill depth of the opening object. The parameter can get a value list, it can be locked and hidden and its value can be set via the parameter script. Its current value will be assigned to the WIDO_SILL global variable for compatibility with older scripts.
ac_wido_hide_options - integer
Via this bitfield parameter you can disable options from the window/door settings dialog. ac_wido_hide_options = j1 + 2*j2. If j1 is set, the sill depth inputs on the default ArchiCAD settings dialog is hidden. If j2 is set, the reveal settings in the settings dialog are disabled.

Hope this helps.

Regards, Juha
Anonymous
Not applicable
The variable ac_wido_sill=0 worked. I just added it as another Parameter.

Thank you.