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

Update doors' properties

Emkave
Enthusiast

Good day everybody. I have stuck with an issue with updating doors' parameters.

Traditionally I update elements' properties by changing their memos and execute the functions in this order:

 

ACAPI_Element_GetMemo(element.header.guid, &memo, API_DoorID);

ACAPI_ELEMENT_MASK_CLEAR(mask);
ACAPI_ELEMENT_MASK_SET(mask, API_DoorType, openingBase.libInd);

<changing memo's values>

and finally I apply the change:

ACAPI_Element_Change(&element, &mask, &memo, APIMemoMask_AddPars, true);

However, the changes are not applied for some reason.

How do you update doors' parameters without creating a new door and deleting the old door and placing the new door on place of the old?


Thanks to all in advance for the help!

0 REPLIES 0