<xsd:complexType name="hLinkType">
<xsd:annotation>
<xsd:documentation>Defines a hyperlink in the document.</xsd:documentation>
</xsd:annotation>
<xsd:choice minOccurs="0" 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.</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 the hyperlink element (analogous to HTML <a href=...> tag).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:group ref="runLevelElts">
</xsd:group>
<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="skip">
</xsd:any>
</xsd:choice>
<xsd:attribute name="bookmark" type="stringType" use="optional">
<xsd:annotation>
<xsd:documentation>Specifies the bookmark location in the document that the hyperlink will jump to.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="target" type="stringType" use="optional">
<xsd:annotation>
<xsd:documentation>Specifies the frame target for the hyperlink (that is, the frameset).</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="screenTip" type="stringType" use="optional">
<xsd:annotation>
<xsd:documentation>Specifies the text to show as a ScreenTip for this hyperlink.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="arbLocation" type="stringType" use="optional">
<xsd:annotation>
<xsd:documentation>Tracks locations in documents that have no bookmark targets. Used internally by Word.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="noHistory" type="onOffType" use="optional">
<xsd:annotation>
<xsd:documentation>Gets or sets whether to add this target to the history list when it is navigated to.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="dest" type="stringType" use="optional">
<xsd:annotation>
<xsd:documentation>Gets or sets the hyperlink destination.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|