ContextChangedEventHandler Delegate (Microsoft.Office.InfoPath)

Represents the method that will handle the ContextChanged event of a form.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
Public Delegate Sub ContextChangedEventHandler ( _
    sender As Object, _
    e As ContextChangedEventArgs _
)
'Usage
Dim instance As New ContextChangedEventHandler(AddressOf HandlerMethod)
public delegate void ContextChangedEventHandler (
    Object sender,
    ContextChangedEventArgs e
)

Parameters

  • sender
    The source of the event.

Remarks

The code skeleton for an event handler associated with the ContextChanged event, which uses the ContextChangedEventHandler delegate, should be added only from the Microsoft Office InfoPath 2007 user interface. For more information on how to add event handlers in InfoPath, see How Do I: Add an Event Handler.

Example

For an example of using the ContextChangedEventHandler delegate, see the sample code in the ContextChanged event of the FormEvents class.

See Also

Reference

Microsoft.Office.InfoPath Namespace