2.87.1 SortBy.Direction

Applies to RDL 2003/10 and RDL 2005/01

The SortBy.Direction element specifies the sort order of the SortBy element. This element is optional and is of type String ([XMLSCHEMA2/2] section 3.2.1).

If this element is specified, its value MUST be one of the following:

Ascending (default): Specifies that the sort is in ascending order.

Descending: Specifies that the sort is in descending order.

If this element is not present, its value is interpreted as "Ascending".

Following is the parent element of the SortBy.Direction element.

Parent elements

SortBy

The following is the XML Schema definition of the SortBy.Direction element.

 <xsd:element name="Direction" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Ascending" />
       <xsd:enumeration value="Descending" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>