Home › Forums › General discussions › Missing Label commands in 22 GDL guide › Reply To: Missing Label commands in 22 GDL guide
I have a Label which pulls parameters from door objects to define the Australian Egress Width correctly.
The Egress Width shown in Door 22 does not comply with Australian Standards.
My Label uses….
!!!!!!!!!!!!!!!!Pull standard parameters from standard doors
n = REQUEST (“ASSOCLP_PARVALUE”, “gs_rebate_width”, index, type, flags, dim1, dim2, framerebate)
nn = REQUEST (“ASSOCLP_PARVALUE”, “gs_ds_w”, index, type, flags, dim1, dim2, framerebate2)
m = REQUEST (“ASSOCLP_PARVALUE”, “ac_leaf_width”, index, type, flags, dim1, dim2, leafwidth)
o = REQUEST (“ASSOCLP_PARVALUE”, “gs_leaf_thk”, index, type, flags, dim1, dim2, leafthk)
!!!!!!!!!!!!!!!!transfer to Label parameters
parameters rebate =max(framerebate,framerebate2)
parameters gs_leafwidth=leafwidth
parameters gs_leafthk=leafthk
Which works fine for the label (at the moment)but I cant schedule the result as I cannot transfer these parameters to properties.
Any ideas anyone?