Class VirtualKeyboardKeySentEventArgs
Event arguments used in the KeySent event.
Inheritance
System.Object
System.EventArgs
VirtualKeyboardKeySentEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.VirtualKeyboard
Assembly: Telerik.WinControls.UI.dll
Syntax
public class VirtualKeyboardKeySentEventArgs : EventArgs
Constructors
VirtualKeyboardKeySentEventArgs(IKey, KeySendContext, Nullable<Int32>, String)
Initializes a new instance of the VirtualKeyboardKeySentEventArgs class.
Declaration
public VirtualKeyboardKeySentEventArgs(IKey key, KeySendContext context, int? virtualKey = default(int? ), string text = null)
Parameters
IKey
key
The pressed key. |
KeySendContext
context
The context. |
System.Nullable<System.Int32>
virtualKey
The virtual key code. |
System.String
text
The text. |
Properties
Context
Determines the type of the parameters that are (going to be) sent.
Declaration
public KeySendContext Context { get; set; }
Property Value
KeySendContext
|
Key
Text
The text.
Declaration
public string Text { get; set; }
Property Value
System.String
|
VirtualKey
The virtual key code.
Declaration
public int? VirtualKey { get; set; }
Property Value
System.Nullable<System.Int32>
|