License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…
2022-10-19 12:07 AM
Is there any way to retrieve the content of Custom Fields in the Layout Info Scheme? I've tried copying and pasting the autotext (in this case <LAYOUTCUSTOMPAR8>) into the TEXT2 command, but that doesn't work for custom fields.
REQUEST ("HomeDB_info"... doesn't give me the data I'm looking for either.
Is there some other way to retrieve (in GDL) the content of these scheme fields?
Solved! Go to Solution.
2022-10-19 07:34 AM - edited 2022-10-19 07:49 AM
I think thats the one....
or it could be another array...
dim issuescheme[][]
issuescheme =GLOB_ISSUE_SCHEME
....
text2 0,0,issuescheme[2][7]
2022-10-19 11:45 AM
You can download an example object here https://gdl.Graphisoft.com/tips-and-tricks/revision-data-in-gdl
2022-10-19 07:34 AM - edited 2022-10-19 07:49 AM
I think thats the one....
or it could be another array...
dim issuescheme[][]
issuescheme =GLOB_ISSUE_SCHEME
....
text2 0,0,issuescheme[2][7]
2022-10-19 11:45 AM
You can download an example object here https://gdl.Graphisoft.com/tips-and-tricks/revision-data-in-gdl
2022-10-19 10:46 PM
That's what I'm after. Thanks AllanP & Yves.