Delegate KeyEventHandler
- Namespace
- Ranorex
- Assembly
- Ranorex.Core.dll
Represents the method that will handle the events of the Keyboard class.
public delegate void KeyEventHandler(object sender, KeyEventArgs e)
Parameters
senderobjectThe source of the event.
eKeyEventArgsA KeyEventArgs that contains the event data.
Constructors
KeyEventHandler(object, IntPtr)
public KeyEventHandler(object @object, IntPtr method)
Parameters
Methods
BeginInvoke(object, KeyEventArgs, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(object sender, KeyEventArgs e, AsyncCallback callback, object @object)
Parameters
senderobjecteKeyEventArgscallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(object, KeyEventArgs)
public virtual void Invoke(object sender, KeyEventArgs e)
Parameters
senderobjecteKeyEventArgs