Learn to manage BIM workflows and create professional Archicad templates with the BIM Manager Program.
2023-09-14
10:26 AM
- last edited on
2024-09-17
12:50 PM
by
Doreena Deng
I am looking for a way to get linked between API_AttrTypeID and API_Element . Is there anyone know which field can be use to link each other?. My target is to find which attribute is used by which element.
2023-09-28 08:38 PM
The elements typically have API_AttributeIndex
fields which indicate which attributes they are using. Every element has in their header the attribute index of the layer it's on.
And for example a wall has a lot of different attribute indices. For example:
API_AttributeIndex buildingMaterial;
API_AttributeIndex composite;
But there are a lot more. Some are hidden in override types (API_OverridenAttribute
) and pen indices often just have datatype short
.
Hope that helps!
Bernd