2.50.29 Matrix.LayoutDirection

Applies to RDL 2003/10 and RDL 2005/01

The Matrix.LayoutDirection element specifies whether matrix columns grow left-to-right (with headers on the left) or right-to-left (with headers on the right). This element is optional and if specified is of type String ([XMLSCHEMA2/2] section 3.2.1). The value of the Matrix.LayoutDirection element MUST be one of the following:

LTR (default): Specifies that the matrix columns are laid out in sequence, starting at the left and progressing to the right.

RTL: Specifies that the matrix columns are laid out in sequence, starting at the right and progressing to the left.

If this element is not specified, its value is interpreted as "LTR".

Following is the parent element of the Matrix.LayoutDirection element.

Parent elements

Matrix

The following is the XML Schema definition of the Matrix.LayoutDirection element.

 <xsd:element name="LayoutDirection" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="LTR" />
       <xsd:enumeration value="RTL" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>