Edit

Share via


ContextChangedEventHandler Delegate

Definition

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

public delegate void ContextChangedEventHandler(System::Object ^ sender, ContextChangedEventArgs ^ e);
public delegate void ContextChangedEventHandler(object sender, ContextChangedEventArgs e);
type ContextChangedEventHandler = delegate of obj * ContextChangedEventArgs -> unit
Public Delegate Sub ContextChangedEventHandler(sender As Object, e As ContextChangedEventArgs)

Parameters

sender
Object

The source of the event.

e
ContextChangedEventArgs

A ContextChangedEventArgs object that contains the event data.

Examples

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

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 InfoPath user interface. For more information on how to add event handlers in InfoPath, see How Do I: Add an Event Handler.

Applies to