![]() | Kostenelement - Typ - Aufzählung |
![]() | Cost Item Type Enum |
![]() | Enumération des types d'items de coûts |
Item | SPF | XML | Change | Description |
---|---|---|---|---|
IFC2x3 to IFC4 | ||||
IfcCostItemTypeEnum | ADDED |
An IfcCostItemTypeEnum is a list of the available types of cost items.
HISTORY New enumeration in IFC4.
Constant | Description |
---|---|
USERDEFINED | User-defined type. |
NOTDEFINED | Undefined type. |
<xs:simpleType name="IfcCostItemTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcCostItemTypeEnum = ENUMERATION OF (
USERDEFINED,
NOTDEFINED);
END_TYPE;