<ST_SortType>
(Set Sort Order)
This simple type defines the possible sort order for the 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 that the PivotTable data is sorted in ascending order. |
|
Indicates that the PivotTable data is sorted in alphabetic order with ascending values. |
|
Indicates that the PivotTable data is sorted in natural order with ascending. |
|
Indicates that the PivotTable data is sorted in descending. |
|
Indicates that the PivotTable data is sorted in alphabetic order with descending values. |
|
Indicates that the PivotTable data is sorted in natural order with descending values. |
|
Indicates that the PivotTable data is not sorted. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_SortType">
<restriction base="xsd:string">
<enumeration value="none"/>
<enumeration value="ascending"/>
<enumeration value="descending"/>
<enumeration value="ascendingAlpha"/>
<enumeration value="descendingAlpha"/>
<enumeration value="ascendingNatural"/>
<enumeration value="descendingNatural"/>
</restriction>
</simpleType>