[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
ST_MailMergeDocType (Source Document Types)
This simple types specifies the possible types for a given WordprocessingML source document.
[Example: Consider the WordprocessingML below:
<w:mailMerge>
<w:mainDocumentType w:val="formLetters" />
…
</w:mailMerge>
In this example, the source document is of the formLetters type, as specified by the mainDocumentType element's val attribute being equal to formLetters. 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 |
catalog (Catalog Source Document) |
Specifies that the mail merge source document is of the catalog type. |
email (E-Mail Source Document) |
Specifies that the mail merge source document is of the e-mail message type. |
envelopes (Envelope Source Document) |
Specifies that the mail merge source document is of the envelope type. |
fax (Fax Source Document) |
Specifies that the mail merge source document is of the fax type. |
formLetters (Form Letter Source Document) |
Specifies that the mail merge source document is of the form letter type. |
mailingLabels (Mailing Label Source Document) |
Specifies that the mail merge source document is of the mailing label type. |
Referenced By |
mainDocumentType@val (§2.14.22) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_MailMergeDocType">
<restriction base="xsd:string">
<enumeration value="catalog"/>
<enumeration value="envelopes"/>
<enumeration value="mailingLabels"/>
<enumeration value="formLetters"/>
<enumeration value="email"/>
<enumeration value="fax"/>
</restriction>
</simpleType>