Element Composition Enum | |
Énumération de composition d'élément |
This enumeration indicates the composition of a spatial structure element or proxy.
HISTORY New enumeration in IFC2x
Constant | Description |
---|---|
COMPLEX | A group or aggregation of similar elements. |
ELEMENT | An (undivided) element itself. |
PARTIAL | A subelement or part. |
<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;