MailMergeWizardStateChangeEventArgs Interface
Provides data for the MailMergeWizardStateChange event.
Namespace: Microsoft.Office.Tools.Word
Assemblies: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)
Syntax
'Declaration
<GuidAttribute("439434ab-eec3-47b3-a0d3-5433474f260e")> _
Public Interface MailMergeWizardStateChangeEventArgs
[GuidAttribute("439434ab-eec3-47b3-a0d3-5433474f260e")]
public interface MailMergeWizardStateChangeEventArgs
The MailMergeWizardStateChangeEventArgs type exposes the following members.
Properties
Name | Description | |
---|---|---|
FromState | Gets the Mail Merge wizard step from which a user is moving. | |
Handled | Gets a value indicating whether to move the user to the next step in the Mail Merge wizard. | |
ToState | Gets an integer indicating the Mail Merge wizard step to which a user is moving. |
Top
Examples
The following code example demonstrates an event handler for the MailMergeWizardStateChange event. The event handler displays a message each time the user advances to the next step in the Mail Merge wizard.
This example is for a document-level customization.
Private Sub DocumentMailMergeWizardStateChange()
AddHandler Me.MailMergeWizardStateChange, AddressOf ThisDocument_MailMergeWizardStateChange
End Sub
Private Sub ThisDocument_MailMergeWizardStateChange(ByVal sender As Object, ByVal e As Microsoft.Office.Tools.Word.MailMergeWizardStateChangeEventArgs)
MessageBox.Show("Wizard has moved to next step.")
End Sub
private void DocumentMailMergeWizardStateChange()
{
this.MailMergeWizardStateChange += new Microsoft.Office.Tools.Word.MailMergeWizardStateChangeEventHandler(ThisDocument_MailMergeWizardStateChange);
}
void ThisDocument_MailMergeWizardStateChange(object sender, Microsoft.Office.Tools.Word.MailMergeWizardStateChangeEventArgs e)
{
MessageBox.Show("Wizard has moved to next step.");
}