<ST_DocType> (Document Classification Values)

This simple type specifies the possible classifications may be used for a WordprocessingML document.

example:
<w:documentType w:val="letter" /> 

The <documentType> element's @val attribute is equal to letter, specifying that the hosting application shall apply the behaviors it has specified for letters to the given WordprocessingML document. ]

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

<eMail> (E-Mail Message)

Specifies that this document shall be classified as an e-mail message.

<letter> (Letter)

Specifies that this document shall be classified as a letter.

<notSpecified> (Default Document)

Specifies that this document shall be classified as a default document.

Referenced By

<documentType@val>2.15.1.29)

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

<simpleType name="ST_DocType">
	<restriction base="xsd:string">
	<enumeration value="notSpecified"/>
	<enumeration value="letter"/>
	<enumeration value="eMail"/>
	</restriction>
</simpleType>