<ST_FieldSortType> (Field Sort Type)

This simple type defines the sort orders that can be applied to fields in a PivotTable.

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

<ascending> (Ascending)

Indicates the field is sorted in ascending order.

<descending> (Descending)

Indicates the field is sorted in descending order.

<manual> (Manual Sort)

Indicates the field is sorted manually.

Referenced By

<pivotField@sortType>3.10.1.69)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_FieldSortType">
	<restriction base="xsd:string">
	<enumeration value="manual"/>
	<enumeration value="ascending"/>
	<enumeration value="descending"/>
	</restriction>
</simpleType>