MainDocumentType Property
Applies To
MailMerge object.
Description
Returns or sets the mail merge main document type. Can be one of the following WdMailMergeMainDocType constants: wdCatalog, wdEnvelopes, wdFormLetters, wdMailingLabels, or wdNotAMergeDocument. Read/write Long.
Note If you set this property for a document that's already a main document, the attached data source is removed.
See Also
State property.
Example
This example creates a new document and makes it a catalog main document for a mail merge operation.
Set myDoc = Documents.Add
myDoc.MailMerge.MainDocumentType = wdCatalog
This example determines whether the active document is a main document for a mail merge operation, and then it displays a message in the status bar.
Set doc = ActiveDocument
If doc.MailMerge.MainDocumentType = wdNotAMergeDocument Then
StatusBar = "Not a mail merge main document"
Else
StatusBar = "Document is a mail merge main document.
End If