<xsd:complexType name="simpleFieldType">
<xsd:annotation>
<xsd:documentation>Defines a field in the document.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="fldData" type="stringType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Represents field data.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="r" type="rElt">
<xsd:annotation>
<xsd:documentation>Represents the run element. This is the leaf container for data in a Word document -- text, pictures, and so on.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="fldSimple" type="simpleFieldType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Represents simple Word field (with plain text instructions). These fields are run-time calculated entities in Word (for example, page numbers).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="hlink" type="hLinkType">
<xsd:annotation>
<xsd:documentation>Represents hyperlink element (analogous to HTML <a href=...> tag).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:group ref="runLevelElts">
</xsd:group>
<xsd:any processContents="skip" namespace="##other" minOccurs="0">
</xsd:any>
</xsd:choice>
</xsd:sequence>
<xsd:attribute name="instr" type="stringType" use="required">
<xsd:annotation>
<xsd:documentation>Gets or sets instruction text for a field.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="fldLock" type="onOffType">
<xsd:annotation>
<xsd:documentation>Gets or sets whether the field is locked from being recalculated.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|