ApplicationEvents4_MailMergeDataSourceValidateEventHandler 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 MailMergeDataSourceValidate event. The MailMergeDataSourceValidate event occurs when a user performs address verification by clicking Validate in the Mail Merge Recipients dialog box.
public delegate void ApplicationEvents4_MailMergeDataSourceValidateEventHandler(Document ^ Doc, bool % Handled);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_MailMergeDataSourceValidateEventHandler(Document Doc, ref bool Handled);
type ApplicationEvents4_MailMergeDataSourceValidateEventHandler = delegate of Document * bool -> unit
Public Delegate Sub ApplicationEvents4_MailMergeDataSourceValidateEventHandler(Doc As Document, ByRef Handled As Boolean)
Parameters
- Doc
- Document
The mail merge main document.
- Handled
- Boolean
True runs the accompanying validation code against the mail merge data source. False cancels the data source validation.
- Attributes