2.3.1.11 Repeating Section Control

A repeating section control bound to a repeating group, for example named "group2" and containing no other bound controls, has the following complex type XSD:

 <xsd:element name="group1">
     <xsd:complexType>
         <xsd:sequence>
             <xsd:element ref="my:group2" minOccurs="0" maxOccurs="unbounded"/>
         </xsd:sequence>
     </xsd:complexType>
 </xsd:element>
 <xsd:element name="group2">
     <xsd:complexType>
         <xsd:sequence/>
     </xsd:complexType>
 </xsd:element>

A repeating section control bound to a repeating group, for example named "group2", and containing a text box control that is not required to contain data, which is bound to an XML element named "field1", with data type set to "string" for which no constraining facets, as specified in [XMLSCHEMA1], have been set has the following XSD:

   <xsd:element name="group1">
       <xsd:complexType>
           <xsd:sequence>
               <xsd:element ref="my:group2" minOccurs="0" maxOccurs="unbounded"/>
           </xsd:sequence>
       </xsd:complexType>
   </xsd:element>
   <xsd:element name="group2">
       <xsd:complexType>
           <xsd:sequence>
               <xsd:element ref="my:field1" minOccurs="0"/>
           </xsd:sequence>
       </xsd:complexType>
   </xsd:element>
   <xsd:element name="field1" type="xsd:string"/>