DocumentBase.MailMergeWizardSendToCustom 事件
在**“邮件合并向导”**的第六步中单击自定义按钮时发生。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public Event MailMergeWizardSendToCustom As EventHandler
public event EventHandler MailMergeWizardSendToCustom
备注
使用 ShowSendToCustom 属性在**“邮件合并向导”**的第六步中创建自定义按钮。
示例
下面的代码示例在您单击自定义目标按钮时执行合并。 此示例假定您对自定义目标按钮拥有访问权限。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentMailMergeWizardSendToCustom()
AddHandler Me.MailMergeWizardSendToCustom, AddressOf ThisDocument_MailMergeWizardSendToCustom
End Sub
Private Sub ThisDocument_MailMergeWizardSendToCustom(ByVal sender As Object, ByVal e As EventArgs)
Me.MailMerge.ShowSendToCustom = "Custom Destination"
Me.MailMerge.Destination = Microsoft.Office.Interop.Word.WdMailMergeDestination. _
wdSendToNewDocument
Me.MailMerge.Execute()
End Sub
private void DocumentMailMergeWizardSendToCustom()
{
this.MailMergeWizardSendToCustom += new
EventHandler(ThisDocument_MailMergeWizardSendToCustom);
}
void ThisDocument_MailMergeWizardSendToCustom(object sender, EventArgs e)
{
this.MailMerge.ShowSendToCustom = "Custom Destination";
this.MailMerge.Destination = Microsoft.Office.Interop
.Word.WdMailMergeDestination.wdSendToNewDocument;
this.MailMerge.Execute(ref missing);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。