We value your input!
Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey

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

Is there any way to get data from Energy Evaluation Module?

Anonymous
Not applicable
I want to get data from Operation Profile that the user enter to do some calculation in my addon, is there any way to do that?
1 ACCEPTED SOLUTION

Accepted Solutions
Solution
MOREH Tamas
Graphisoft
Graphisoft
Hi,

you can get Operation Profile's values using the ACAPI_Attribute_Get method, when you set the attributes header.typeID as API_OperationProfileID.

Have you seen the API_OperationProfileType in the doc? Do you need something which cannot be found?

View solution in original post

2 REPLIES 2
Solution
MOREH Tamas
Graphisoft
Graphisoft
Hi,

you can get Operation Profile's values using the ACAPI_Attribute_Get method, when you set the attributes header.typeID as API_OperationProfileID.

Have you seen the API_OperationProfileType in the doc? Do you need something which cannot be found?
Anonymous
Not applicable
MOREH wrote:
Hi,

you can get Operation Profile's values using the ACAPI_Attribute_Get method, when you set the attributes header.typeID as API_OperationProfileID.

Have you seen the API_OperationProfileType in the doc? Do you need something which cannot be found?
It is ok, thanks a lot