StylusEventHandler Delegate
Definition
Represents the method that handles a stylus event for a class that the implements the IInputElement interface.
public delegate void StylusEventHandler(System::Object ^ sender, StylusEventArgs ^ e);
public delegate void StylusEventHandler(object sender, StylusEventArgs e);
type StylusEventHandler = delegate of obj * StylusEventArgs -> unit
Public Delegate Sub StylusEventHandler(sender As Object, e As StylusEventArgs)
Parameters
- sender
- Object
The source of the event.
The event data.
- Inheritance
Examples
The following example demonstrates how to use the StylusEventHandler delegate to designate a handler for the StylusDown event.
button1.StylusDown += new StylusDownEventHandler(button1_StylusDown);
AddHandler button1.StylusDown, AddressOf button1_StylusDown
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |