2.6.5 ReportSection.DataElementOutput

Applies to RDL 2010/01 and RDL 2016/01

The ReportSection.DataElementOutput element specifies whether the data of a ReportSection appears in a data rendering. The ReportSection.DataElementOutput element is optional. If this element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1). The value of this element is one of the following:

Auto: Specifies the default setting for how a report section will appear in a data rendering, which is the same as "NoOutput". This is the default value.

Output: Specifies that the report section appears in a data rendering output.

NoOutput: Specifies that the report section does not appear in a data rendering output.

ContentsOnly: Specifies that the report section itself does not appear in a data rendering output, but that its inner contents appear in a data rendering output.

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

Following is the parent element of the ReportSection.DataElementOutput element.

Parent elements

ReportSection

The following is the XML Schema definition of the ReportSection.DataElementOutput element.

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