Class KeyInfo
This class is used to represent information about the text for a single key. It holds information about the lower, shift, alt and capslock text that is displayed in the key based on the current state of keyboard.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.VirtualKeyboard
Assembly: Telerik.WinControls.UI.dll
Syntax
public class KeyInfo
Constructors
KeyInfo()
Declaration
public KeyInfo()
Properties
AltText
Gets or sets the text being displayed when alt key is pressed.
Declaration
public string AltText { get; set; }
Property Value
System.String
|
CapsLockText
Gets or sets the text being displayed when CapsLock key is pressed.
Declaration
public string CapsLockText { get; set; }
Property Value
System.String
|
LowerText
Gets or sets the lower case text. This is the default text
Declaration
public string LowerText { get; set; }
Property Value
System.String
|
ShiftText
Gets or sets the text being displayed when shift key is pressed.
Declaration
public string ShiftText { get; set; }
Property Value
System.String
|