<ST_FldCharType> (Complex Field Character Type)

This simple type specifies the possible values for the type of a single complex field character in the document.

example:
<w:fldChar w:type="separate" />

The @type attribute value of separate specifies that this is a complex field separator character; therefore it is being used to separate the field codes from the field contents in a complex field. ]

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

The following are possible enumeration values for this type:

Enumeration Value

Description

<begin> (Start Character)

Specifies that the character is a start character, which defines the start of a complex field.

<end> (End Character)

Specifies that the character is an end character, which defines the end of a complex field.

<separate> (Separator Character)

Specifies that the character is a separator character, which defines the end of the field codes and the start of the field result for a complex field.

Referenced By

<fldChar@fldCharType>2.16.18)

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

<simpleType name="ST_FldCharType">
	<restriction base="xsd:string">
	<enumeration value="begin"/>
	<enumeration value="separate"/>
	<enumeration value="end"/>
	</restriction>
</simpleType>