Class VirtualKeyboardKeySendingEventArgs
Event arguments used in the KeySending event.
Inheritance
System.Object
System.EventArgs
VirtualKeyboardKeySendingEventArgs
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 VirtualKeyboardKeySendingEventArgs : VirtualKeyboardKeySentEventArgs
Constructors
VirtualKeyboardKeySendingEventArgs(IKey, KeySendContext, Nullable<Int32>, String, Boolean)
Initializes a new instance of the VirtualKeyboardKeySendingEventArgs class.
Declaration
public VirtualKeyboardKeySendingEventArgs(IKey key, KeySendContext context, int? virtualKey = default(int? ), string text = null, bool cancel = false)
Parameters
IKey
key
The pressed key. |
KeySendContext
context
The context. |
System.Nullable<System.Int32>
virtualKey
The virtual key code. |
System.String
text
The text. |
System.Boolean
cancel
Cancel. |
Properties
Cancel
Gets or sets a value indicating whether the key will be sent.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|