Udostępnij za pośrednictwem


DocumentBase.MailMergeWizardSendToCustom Zdarzenie

Definicja

Występuje, gdy przycisk niestandardowy jest klikany w kroku szóstym Kreatora korespondencji seryjnej.

public:
 event EventHandler ^ MailMergeWizardSendToCustom;
public event EventHandler MailMergeWizardSendToCustom;
member this.MailMergeWizardSendToCustom : EventHandler 
Public Custom Event MailMergeWizardSendToCustom As EventHandler 

Typ zdarzenia

Przykłady

Poniższy przykład kodu wykonuje scalanie po kliknięciu przycisku niestandardowego miejsca docelowego. W tym przykładzie przyjęto założenie, że masz dostęp do niestandardowego przycisku docelowego. Aby użyć tego przykładu ThisDocument , uruchom go z klasy w projekcie na poziomie dokumentu.

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);
}
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

Uwagi

ShowSendToCustom Użyj właściwości , aby utworzyć przycisk niestandardowy w szóstym kroku Kreatora korespondencji seryjnej.

Dotyczy