<ST_Angle>
(Callout Angles)
This simple type specifies values for the @angle
attribute of the <callout>
element (§6.2.2.2).
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
30 degrees. |
|
45 degrees. |
|
60 degrees. |
|
90 degrees. |
|
Unconstrained angle. |
|
The application chooses an appropriate angle. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Angle">
<restriction base="xsd:string">
<enumeration value="any"/>
<enumeration value="30"/>
<enumeration value="45"/>
<enumeration value="60"/>
<enumeration value="90"/>
<enumeration value="auto"/>
</restriction>
</simpleType>