Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.