Enumeration that provides an indication, whether the spatial structure element or proxy represents a:
HISTORY New enumeration in IFC Release 2.x
Constant | Description |
---|---|
COMPLEX | |
ELEMENT | |
PARTIAL |
<xs:simpleType name="IfcElementCompositionEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="complex"/>
<xs:enumeration value="element"/>
<xs:enumeration value="partial"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcElementCompositionEnum = ENUMERATION OF (
COMPLEX,
ELEMENT,
PARTIAL);
END_TYPE;