<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> (30 degrees)

30 degrees.

<45> (45 degrees)

45 degrees.

<60> (60 degrees)

60 degrees.

<90> (90 degrees)

90 degrees.

<any> (Any Angle)

Unconstrained angle.

<auto> (Automatic Angle)

The application chooses an appropriate angle.

Referenced By

<callout@angle>6.2.2.2)

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>