[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

name (Form Field Name)

This element specifies the name of the current 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]

Parent Elements

ffData2.16.17)

 

Attributes

Description

val (Form Field Name Value)

Specifies the name of the form field.

 

If this attribute is omitted, then the parent form field shall have no name.

 

[Example: Consider the following WordprocessingML fragment for a

form field:

 

<w:ffData>
<w:name w:val="ExampleFieldName"/>
</w:ffData>

 

The val attribute specifies that the name of the current form field is ExampleFieldName. end example]

 

The possible values for this attribute are defined by the ST_FFName simple type2.18.30).

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

<complexType name="CT_FFName">

   <attribute name="val" type="ST_FFName"/>

</complexType>