2.277 DataRow

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

The DataRow parent element defines a collection of DataCell elements that contain data within each row for a CustomReportItem.

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

Parent elements

DataRows

Child element

DataRow.DataCell

The following is the XML Schema definition of the DataRow element in RDL 2005/01 and RDL 2008/01.

 <xsd:complexType name="DataRowType">
   <xsd:sequence>
     <xsd:element name="DataCell" type="DataCellType" maxOccurs="unbounded" />
   </xsd:sequence>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

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

 <xsd:complexType name="DataRowType">
   <xsd:sequence>
     <xsd:element name="DataCell" type="DataCellType" maxOccurs="unbounded" />
   </xsd:sequence>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>