StylusDownEventHandler Delegate

Definition

Represents the method that handles the StylusDown event, as well as several variations, including the corresponding Preview event. Also re-exposes the event in the base element classes.

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

Parameters

sender
Object

The source of the event.

e
StylusDownEventArgs

A StylusDownEventArgs that contains the event data. .

Remarks

Typically, this delegate corresponds to a routed event. Check the event data, in particular the Source property, to determine which element raised the event.

Extension Methods

GetMethodInfo(Delegate)

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

Applies to