[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_FFName (Form Field Name Value)

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

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

<w:fldSimple w:instr="FORMTEXT">
<w:ffData>
<w:name w:val="FirstName"/>
<w:textInput>

</w:textInput>
</w:ffData>
</w:fldSimple>

The name element specifies that the name of the current form field is FirstName. 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 65 characters.

Referenced By

name@val2.16.28)

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

<simpleType name="ST_FFName">

   <restriction base="xsd:string">

   <maxLength value="65"/>

   </restriction>

</simpleType>