<ST_DocType> (Document Classification Values)
This simple type specifies the possible classifications may be used for a WordprocessingML document.
<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 |
|---|---|
|
Specifies that this document shall be classified as an e-mail message. |
|
Specifies that this document shall be classified as a letter. |
|
Specifies that this document shall be classified as a default document. |
Referenced By |
|---|
|
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>