<xsd:complexType name="BindingType">
<xsd:annotation>
<xsd:documentation>Contains information necessary for connecting to an XML data source.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="MapID" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains the ID of the map that a binding will use when working with an XML data source.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="udc:DataSource" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="ID" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>Specifies the unique identifier for a binding.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="LoadMode" use="optional" default="normal">
<xsd:annotation>
<xsd:documentation>Specifies how the data is to be loaded.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="normal" />
<xsd:enumeration value="om" />
<xsd:enumeration value="delay" />
<xsd:enumeration value="async" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="Async" use="optional" default="True">
<xsd:annotation>
<xsd:documentation>This element or attribute is not created or processed by Excel. It is designed to be used by external applications and components.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="True" />
<xsd:enumeration value="true" />
<xsd:enumeration value="False" />
<xsd:enumeration value="false" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
|