2.24 TablixBody

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

The TablixBody element defines the rows and columns of a Tablix.

Note  The grid of a rendered tablix can have other rows or columns defined by TablixHeader elements.

The following are the parent and child elements of the TablixBody element.

Parent elements

Tablix

Child elements

TablixBody.TablixColumns

TablixBody.TablixRows

The following is the XML Schema definition of the TablixBody element in RDL 2008/01.

 <xsd:complexType name="TablixBodyType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="TablixColumns" type="TablixColumnsType" minOccurs="1" maxOccurs="1" />
     <xsd:element name="TablixRows" type="TablixRowsType" minOccurs="1" maxOccurs="1" />
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

The following is the XML Schema definition of the TablixBody element in RDL 2010/01 and RDL 2016/01.

 <xsd:complexType name="TablixBodyType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="TablixColumns" type="TablixColumnsType" minOccurs="1" maxOccurs="1" />
     <xsd:element name="TablixRows" type="TablixRowsType" minOccurs="1" maxOccurs="1" />
     <xsd:any namespace="##other" processContents="lax" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>