2.15.7 Subreport.DataElementOutput

The Subreport.DataElementOutput element indicates how a Subreport appears in a data rendering. This element is optional. If this element is not present, its value defaults to "Auto". If this element is present, its value MUST be one of the following:

Auto (Default): MUST behave as "NoOutput" if the visibility of the subreport is statically hidden. The subreport is statically hidden when the subreport's Visibility.Hidden property is set to true and the Visibility.ToggleItem property is not specified, or if the subreport is within a TablixMember that has groupings that have the Visibility.Hidden property set to non-expression true. Otherwise, "Auto" MUST behave as "Output".

Output: Indicates that the subreport appears in a data rendering output.

NoOutput: Indicates that the subreport does not appear in a data rendering output.

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

Parent elements

Subreport

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