[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

ST_DocType (Document Classification Values)

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

[Example: Consider a set of WordprocessingML documents which should be classified as 'letters'. This classification would be specified using the following WordprocessingML in the document settings of these documents:

<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. end example]

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@val2.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>