2022-10-18 03:07 PM
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-18 10:34 PM - edited 2022-10-18 10:49 PM
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 02:45 AM
You can download an example object here https://gdl.Graphisoft.com/tips-and-tricks/revision-data-in-gdl
2022-10-19 01:46 PM
That's what I'm after. Thanks AllanP & Yves.