Enumeration defining the valid types of railings that can be predefined using the enumeration values.
HISTORY: New Enumeration in IFC Release 2.0
Enumeration
<xs:simpleType name="IfcRailingTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="handrail"/>
<xs:enumeration value="guardrail"/>
<xs:enumeration value="balustrade"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
*)
TYPE IfcRailingTypeEnum = ENUMERATION OF (
HANDRAIL,
GUARDRAIL,
BALUSTRADE,
USERDEFINED,
NOTDEFINED);
END_TYPE;
(*