We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2024-01-05 07:55 AM - last edited on 2024-09-26 12:08 PM by Doreena Deng
Solved! Go to Solution.
2024-01-07 01:13 PM - last edited on 2024-01-13 03:10 AM by Laszlo Nagy
Hi iu-tamura
You can list all BuiltIn- and UserDefinedProperties of a project by running the script below. If you run it in visual studio code or in Archicad Python Palette, the script should return available values to the terminal- / console-view. After that, you can copy and paste the printed result into, for example, Word and save it as a text document.
from archicad import ACConnection
conn = ACConnection.connect()
acc = conn.commands
act = conn.types
acu = conn.utilities
PropertyIds = acc.GetAllPropertyNames()
for PropertyId in PropertyIds:
print(PropertyId)
2024-01-07 01:13 PM - last edited on 2024-01-13 03:10 AM by Laszlo Nagy
Hi iu-tamura
You can list all BuiltIn- and UserDefinedProperties of a project by running the script below. If you run it in visual studio code or in Archicad Python Palette, the script should return available values to the terminal- / console-view. After that, you can copy and paste the printed result into, for example, Word and save it as a text document.
from archicad import ACConnection
conn = ACConnection.connect()
acc = conn.commands
act = conn.types
acu = conn.utilities
PropertyIds = acc.GetAllPropertyNames()
for PropertyId in PropertyIds:
print(PropertyId)
2024-01-09 05:58 AM
Thanks for your answer. I was able to view the property list!