Streamline your workflows and master BIM coordination! Program starts April 28!

Archicad C++ API
About Archicad add-on development using the C++ API.

Please Teach Me On C++ Command From Menu

nishida_jp
Booster


ArchiCAD27APIC++/Win11
From now on, answer only with existing commands.

What is the C++ command to perform ArchiCAD's menu 'View' → 'Update' → 'Rebuild?

1 REPLY 1
LChen
Graphisoft
Graphisoft

Hi, The API command for rebuild is:

 
bool    regenerate = true;
ACAPI_View_Rebuild(&regenerate);

HTH.