[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_InfoTextType (Help or Status Text Type)

This simple type specifies the possible values for the type of help or status text which may be associated with a form field.

[Example: Consider the following WordprocessingML fragment for a form field:

<w:ffData>
<w:helpText w:type="text" w:val="Example help text." />
</w:ffData>

The type attribute has a value of text, which specifies that the text in the val attribute is the literal help text for this form field. end example]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

autoText (Glossary Document Entry)

Specifies that the value specified by the parent XML element's val attribute shall be interpreted as the name of a glossary document entry whose contents contain the help or status text.

text (Literal Text)

Specifies that the value specified by the parent XML element's val attribute shall be interpreted as the literal text for the help or status text.

 

Referenced By

helpText@type2.16.23); statusText@type2.16.32)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_InfoTextType">

   <restriction base="xsd:string">

   <enumeration value="text"/>

   <enumeration value="autoText"/>

   </restriction>

</simpleType>