Text - Pfad | |
Text Path |
The text path determines the direction of the text characters in respect to each other.
NOTE The IfcTextPath is an entity that had been adopted from ISO 10303, Industrial automation systems and integrationProduct data representation and exchange, Part 46: Integrated generic resources: Visual presentation.
NOTE Corresponding ISO 10303 name:text_path . Please refer to ISO/IS 10303-46:1994 for the final definition of the formal standard.
HISTORY New entity in IFC2x2.
Constant | Description |
---|---|
LEFT | |
RIGHT | |
UP | |
DOWN |
<xs:simpleType name="IfcTextPath">
<xs:restriction base="xs:string">
<xs:enumeration value="left"/>
<xs:enumeration value="right"/>
<xs:enumeration value="up"/>
<xs:enumeration value="down"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcTextPath = ENUMERATION OF (
LEFT,
RIGHT,
UP,
DOWN);
END_TYPE;