Definition
from IAI: The IfcGeometricProjectionEnum
defines the various representation types that can be semantically
distinguished. Often different levels of detail of the shape
representation are controlled by the representation type.
HISTORY: New Type in Release IFC 2x Edition 2.
| Constant | Description | 
|---|---|
| GRAPH_VIEW | |
| SKETCH_VIEW | |
| MODEL_VIEW | |
| PLAN_VIEW | |
| REFLECTED_PLAN_VIEW | |
| SECTION_VIEW | |
| ELEVATION_VIEW | |
| USERDEFINED | |
| NOTDEFINED | 
 <xs:simpleType name="IfcGeometricProjectionEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="graph_view"/>
   <xs:enumeration value="sketch_view"/>
   <xs:enumeration value="model_view"/>
   <xs:enumeration value="plan_view"/>
   <xs:enumeration value="reflected_plan_view"/>
   <xs:enumeration value="section_view"/>
   <xs:enumeration value="elevation_view"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcGeometricProjectionEnum = ENUMERATION OF (
 GRAPH_VIEW, 
 SKETCH_VIEW, 
 MODEL_VIEW, 
 PLAN_VIEW, 
 REFLECTED_PLAN_VIEW, 
 SECTION_VIEW, 
 ELEVATION_VIEW, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;