DocumentBase.MailMerge Property

Gets a MailMerge that represents the mail merge functionality for the document.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Syntax

'Declaration
Public ReadOnly Property MailMerge As MailMerge
    Get
public MailMerge MailMerge { get; }

Property Value

Type: Microsoft.Office.Interop.Word.MailMerge
A MailMerge that represents the mail merge functionality for the document.

Remarks

The MailMerge object is available regardless of whether the specified document is a mail merge main document. Use the State property to determine the current state of the mail merge operation.

Examples

The following code example opens a data source and then merges the document with the data source. This code assumes that you have a data source called test.mdb saved at the root of the C directory. To use this example, run it from the ThisDocument class in a document-level project.

Private Sub DocumentMailMerge()
    Me.MailMerge.OpenDataSource("C:\test.mdb")
    Me.MailMerge.Execute()
End Sub 
private void DocumentMailMerge()
{
    this.MailMerge.OpenDataSource("C:\\test.mdb",
        ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing,
        ref missing, ref missing, ref missing);
        this.MailMerge.Execute(ref missing);
}

.NET Framework Security

See Also

Reference

DocumentBase Class

Microsoft.Office.Tools.Word Namespace