Class
VirtualKeyboardKeySentEventArgs

Event arguments used in the KeySent event.

Definition

Namespace:Telerik.WinControls.VirtualKeyboard

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class VirtualKeyboardKeySentEventArgs : EventArgs

Inheritance: objectEventArgsVirtualKeyboardKeySentEventArgs

Derived Classes: VirtualKeyboardKeySendingEventArgs

Inherited Members EventArgs.Empty

Constructors

VirtualKeyboardKeySentEventArgs(IKey, KeySendContext, int?, string)

Initializes a new instance of the VirtualKeyboardKeySentEventArgs class.

Declaration

cs-api-definition
public VirtualKeyboardKeySentEventArgs(IKey key, KeySendContext context, int? virtualKey = null, string text = null)

Parameters

key

IKey

The pressed key.

context

KeySendContext

The context.

virtualKey

int?

The virtual key code.

text

string

The text.

Properties

Context

Determines the type of the parameters that are (going to be) sent.

Declaration

cs-api-definition
public KeySendContext Context { get; set; }

Property Value

KeySendContext

Key

The pressed key.

Declaration

cs-api-definition
public IKey Key { get; }

Property Value

IKey

Text

The text.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

VirtualKey

The virtual key code.

Declaration

cs-api-definition
public int? VirtualKey { get; set; }

Property Value

int?