ApplicationEvents4_MailMergeWizardStateChangeEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Delegate type used to add an event handler for the MailMergeWizardStateChange event. The MailMergeWizardStateChange event occurs when a user changes from a specified step to a specified step in the Mail Merge Wizard.
public delegate void ApplicationEvents4_MailMergeWizardStateChangeEventHandler(Document ^ Doc, int % FromState, int % ToState, bool % Handled);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_MailMergeWizardStateChangeEventHandler(Document Doc, ref int FromState, ref int ToState, ref bool Handled);
type ApplicationEvents4_MailMergeWizardStateChangeEventHandler = delegate of Document * int * int * bool -> unit
Public Delegate Sub ApplicationEvents4_MailMergeWizardStateChangeEventHandler(Doc As Document, ByRef FromState As Integer, ByRef ToState As Integer, ByRef Handled As Boolean)
Parameters
- Doc
- Document
The mail merge main document.
- FromState
- Int32
The Mail Merge Wizard step from which a user is moving.
- ToState
- Int32
The Mail Merge Wizard step to which a user is moving.
- Handled
- Boolean
True moves the user to the next step. False for the user to remain at the current step.
- Attributes