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