![]()  | Furniture Type Enum | 
![]()  | Enumération des types de mobilier | 
| Item | SPF | XML | Change | Description | IFC2x3 to IFC4 | 
|---|---|---|---|---|
| IfcFurnitureTypeEnum | ADDED | 
IfcFurnitureTypeEnum defines the types of furniture from which the type required can be selected.
HISTORY New enumeration in IFC4.
| Constant | Description | 
|---|---|
| CHAIR | Furniture for seating a single person. | 
| TABLE | Furniture with a countertop for multiple people. | 
| DESK | Furniture with a countertop and optional drawers for a single person. | 
| BED | Furniture for sleeping. | 
| FILECABINET | Furniture with sliding drawers for storing files. | 
| SHELF | Furniture for storing books or other items. | 
| SOFA | Furniture for seating multiple people. | 
| USERDEFINED | User-defined type. | 
| NOTDEFINED | Undefined type. | 
 <xs:simpleType name="IfcFurnitureTypeEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="chair"/>
   <xs:enumeration value="table"/>
   <xs:enumeration value="desk"/>
   <xs:enumeration value="bed"/>
   <xs:enumeration value="filecabinet"/>
   <xs:enumeration value="shelf"/>
   <xs:enumeration value="sofa"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcFurnitureTypeEnum = ENUMERATION OF (
 CHAIR, 
 TABLE, 
 DESK, 
 BED, 
 FILECABINET, 
 SHELF, 
 SOFA, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;