Edit

Share via


ClickedEventHandler Delegate

Definition

Represents the method that will handle the Clicked event of a Button control.

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

Parameters

sender
Object

The source of the event.

e
ClickedEventArgs

A ClickedEventArgs object that contains the event data.

Examples

For an example of using the ClickedEventHandler delegate, see the sample code in the Clicked event of the ButtonEvent class.

Remarks

The code skeleton for an event handler associated with the Clicked event, which uses the ClickedEventHandler 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