2.50.25 Matrix.CellDataElementOutput

Applies to RDL 2003/10 and RDL 2005/01

The Matrix.CellDataElementOutput element specifies whether the data in a details cell in a Matrix is included in a data rendering of the matrix. The Matrix.CellDataElementOutput element is optional. If this element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1). The specified value for this element MUST be one of the following:

Output (Default): Specifies that the cell detail data is included in a data rendering.

NoOutput: Specifies that the cell detail data is not included in a data rendering.

ContentsOnly: Specifies that the cell itself is not included in a data rendering, but the contents of the cell are included in the data rendering and are rendered as if the contents were in the cell’s container.

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

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

Parent elements

Matrix

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

 <xsd:element name="CellDataElementOutput" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Output" />
       <xsd:enumeration value="NoOutput" />
       <xsd:enumeration value="ContentsOnly" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>