2.84.1 SortExpression.Direction

Applies to RDL 2008/01, RDL 2010/01, and RDL 2016/01

The SortExpression.Direction element specifies the sort order of the SortExpression element. The SortExpression.Direction element is optional and MUST NOT be specified more than once. If this element is specified, its value MUST be one of the following:

Ascending (default): Data is sorted in ascending order.

Descending: Data is sorted in descending order.

If the SortExpression.Direction element is not specified, its value is interpreted as "Ascending".

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

Parent elements

SortExpression

The following is the XML Schema definition of the SortExpression.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>