_ApplicationEvents_NewXDocumentEventHandler delegate

Represents the method that will handle the NewXDocument event.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub _ApplicationEvents_NewXDocumentEventHandler ( _
    pDocument As _XDocument _
)
'Usage
Dim instance As New _ApplicationEvents_NewXDocumentEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void _ApplicationEvents_NewXDocumentEventHandler(
    _XDocument pDocument
)

Parameters

Remarks

When you create an _ApplicationEvents_NewXDocumentEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information, see Events and Delegates.

See also

Reference

Microsoft.Office.Interop.InfoPath namespace