HandledEventHandler Delegate

Definition

Represents a method that can handle events which may or may not require further processing after the event handler has returned.

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

Parameters

sender
Object

The source of the event.

e
HandledEventArgs

A HandledEventArgs that contains the event data.

Remarks

This delegate is available for use with your own events when the HandledEventArgs.Handled property provides sufficient event data. The event handler can set the Handled property to true if all necessary processing has been completed in the handler.

Typically, events that require this functionality will also require additional event data, and will use a class that derives from HandledEventArgs along with a corresponding, similarly-named delegate type. For example, the DataGridView.RowPrePaint event uses the DataGridViewRowPrePaintEventArgs event-data type and the DataGridViewRowPrePaintEventHandler delegate type. Because delegates are not inherited, the HandledEventHandler is rarely used.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to