Column Type Enum | |
Énumération des types de poteau |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcColumnTypeEnum | ||||
PILASTER | ADDED |
This enumeration defines the different predefined types of columns that can further specify an IfcColumn or IfcColumnType.
HISTORY New Enumeration in IFC2x2.
Constant | Description |
---|---|
COLUMN | A standard member usually vertical and requiring resistance to vertical forces by compression but also sometimes to lateral forces. |
PILASTER | A column element embedded within a wall that can be required to be load bearing but may also only be used for decorative purposes. |
USERDEFINED | User-defined linear element. |
NOTDEFINED | Undefined linear element. |
<xs:simpleType name="IfcColumnTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="column"/>
<xs:enumeration value="pilaster"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcColumnTypeEnum = ENUMERATION OF (
COLUMN,
PILASTER,
USERDEFINED,
NOTDEFINED);
END_TYPE;
References: IfcColumn IfcColumnType