[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_FFStatusTextVal (Status Text Value)

This simple type specifies the format of optional status text which may be associated with the parent form field.

[Example: Consider the following WordprocessingML fragment for a drop-down list form field:

<w:fldSimple w:instr="FORMDROPDOWN">
<w:ffData>
<w:statusText w:type="text" w:val="Example status text." />
<w:ddList>

</w:ddList>
</w:ffData>
</w:fldSimple>

The statusText element specifies the status text for the parent form field - in this case, literal text consisting of the string Example status text. end example]

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

This simple type also specifies the following restrictions:

This simple type's contents have a maximum length of 140 characters.

Referenced By

statusText@val2.16.32)

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

<simpleType name="ST_FFStatusTextVal">

   <restriction base="xsd:string">

   <maxLength value="140"/>

   </restriction>

</simpleType>