2.14 DataRegion

The DataRegion element specifies the state of a named data region in a report definition.

Filters: Specifies the container element for the Filters. The Filters element MUST be specified and MUST NOT be specified more than once.

Filters.Filters: Specifies the Filters to use. The Filters.Filters element MUST be specified and MUST NOT be specified more than once.

Name: Specifies the name of the data region where the Filters are applied. The Name attribute MUST be specified and MUST NOT be specified more than once.

The following is the XSD for the DataRegion element.

   <xs:complexType name="DataRegionType">
     <xs:sequence>
       <xs:element name="Filters">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="Filters" type="FiltersType" />
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
     <xs:attribute name="Name" type="xs:string" />
   </xs:complexType>