We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2021-10-19 03:54 PM
Hello everyone,
i'm a student working at an architecture bureau and im experimenting with the Python API and Archicad.
Lately we've been trying to set things with the acc.SetPropertyValuesOfElements() method and while doing so we noticed that there are some properties you can edit and some are read-only.
So now we are in the process of finding out which properties can be edited, but there is no official information from GRAPHISOFT on which properties are editable.
So before i try to write a script that tries to change every property and safes the 'success' param i wanted to ask, if there is a list which already contains all read-only properties.
Dear Regards
Dayiz
Solved! Go to Solution.
2021-10-27 02:37 PM
Hi Dayiz,
From Archicad 26 the PropertyDefinition in JSON/Python API will contain an isEditable boolean value which defines whether the property is editable or not. That's already implemented, we just have to wait for it 🙂
Unfortunately in previous versions that information is not available yet.
2021-10-27 02:37 PM
Hi Dayiz,
From Archicad 26 the PropertyDefinition in JSON/Python API will contain an isEditable boolean value which defines whether the property is editable or not. That's already implemented, we just have to wait for it 🙂
Unfortunately in previous versions that information is not available yet.
2021-11-01 12:33 PM
Well, then its time to proof my patience.
Thank you!