2.30.3 TablixCell.DataElementOutput

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

The TablixCell.DataElementOutput element specifies the inclusion of the TablixCell in a data rendering. This element is optional and MUST NOT be specified more than once.

If this element is specified, its value MUST be one of the following:

ContentsOnly (default): The TablixCell does not appear in the data rendering output, but its contents appear in the data rendering output as if they were in the container of the TablixCell element.

Output: The TablixCell appears in the data rendering output.

NoOutput: The TablixCell does not appear in the data rendering output, and its contents do not appear in the data rendering output.

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

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

Parent elements

TablixCell

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

 <xsd:element name="DataElementOutput" minOccurs="0" maxOccurs="1">
   <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>