Connection Type Enum | |
Enumération des types de connection |
This enumeration defines the different ways how path based elements (such as IfcWallStandardCase) can connect, as shown in Figure 191.
HISTORY New type in IFC2.0
The enumerated items shall be used in the following combinations:
|
||||||||
Figure 191 — Connection types |
Constant | Description |
---|---|
ATPATH | Connection along the path of the connected element. |
ATSTART | Connection at the start of the connected element. |
ATEND | Connection at the end of the connected element. |
NOTDEFINED |
<xs:simpleType name="IfcConnectionTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="atpath"/>
<xs:enumeration value="atstart"/>
<xs:enumeration value="atend"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcConnectionTypeEnum = ENUMERATION OF (
ATPATH,
ATSTART,
ATEND,
NOTDEFINED);
END_TYPE;
References: IfcRelConnectsPathElements