<statusText> (Associated Status Text)

This element specifies optional status text which shall be associated with the parent form field. The method or user interface by which this status text may be surfaced is not defined by this Office Open XML Standard.

If this element is omitted, then no status text shall be associated with the current form field.

example:
<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. ]

Parent Elements

<ffData>2.16.17)

Attributes

Description

<type> (Status Text Type)

Specifies the type of status text which is specified by this element, defined by the simple type below.

If this attribute is omitted, then its value shall be assumed to be text.

<w:ffData>
  <w:statusText w:type="text" w:val="Example status text." />
</w:ffData>

The <type> attribute has a value of text, which specifies that the text in the @val attribute is the literal status text for this form field. ]

The possible values for this attribute are defined by the ST_InfoTextType simple type (§2.18.49).

<val> (Status Text Value)

Specifies the status text for the current form field. Based on the value of the @type attribute, the contents of this field shall be interpreted as follows:

  • When the @type attribute value is text, contains the literal status text for the form field.

  • When the @type attribute value is autoText, contains the name of a glossary document entry which contains the status text for the form field.

<w:ffData>
  <w:statusText w:type="autoText" w:val="MyStatusText" />
</w:ffData>

The text in the @val attribute is the name of a glossary document entry containing the status text for this form field, since the <type> attribute has a value of autoText. ]

The possible values for this attribute are defined by the ST_FFStatusTextVal simple type (§2.18.31).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_FFStatusText">
	<attribute name="type" type="ST_InfoTextType"/>
	<attribute name="val" type="ST_FFStatusTextVal"/>
</complexType>