<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 |
---|---|
|
Indicates the field is sorted in ascending order. |
|
Indicates the field is sorted in descending order. |
|
Indicates the field is sorted manually. |
Referenced By |
---|
|
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>