![]()  | Section Type Enum | 
![]()  | Enumération des types de section | 
| Item | SPF | XML | Change | Description | IFC2x3 to IFC4 | 
|---|---|---|---|---|
| IfcSectionTypeEnum | MOVED | Schema changed from IFCPROFILEPROPERTYRESOURCE to IFCPROFILERESOURCE.  | 
An enumeration indicating whether a specific piece of a cross section is uniform or tapered in longitudinal direction.
HISTORY New type in IFC2x2.
| Constant | Description | 
|---|---|
| UNIFORM | The section is uniform in longitudinal direction. | 
| TAPERED | The section is tapered in longitudinal direction. | 
 <xs:simpleType name="IfcSectionTypeEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="uniform"/>
   <xs:enumeration value="tapered"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcSectionTypeEnum = ENUMERATION OF (
 UNIFORM, 
 TAPERED);
END_TYPE;