Destination Property

       

Returns a Long that represents the destination of the mail merge results. Read-only.

expression.Destination

expression   Required. An expression that returns a MailMerge object.

Remarks

With Microsoft Publisher 2002, mail merge publications can only be merged to the printer, so the only possible return value is 1 (meaning the printer).

Example

This example sends the results of a mail merge operation to a new publication.

Sub MergeResults()
    Dim lngDestination As Long
    lngDestination = ActiveDocument.MailMerge.Destination

    Select Case lngDestination
        Case 1
            MsgBox "Your mail merge publication will be merged to the printer."
    End Select

End Sub