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.

Definition

Namespace:Telerik.WinControls.VirtualKeyboard

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class KeyInfo

Inheritance: objectKeyInfo

Constructors

KeyInfo()

Declaration

cs-api-definition
public KeyInfo()

Properties

AltText

Gets or sets the text being displayed when alt key is pressed.

Declaration

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

Property Value

string

CapsLockText

Gets or sets the text being displayed when CapsLock key is pressed.

Declaration

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

Property Value

string

LowerText

Gets or sets the lower case text. This is the default text

Declaration

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

Property Value

string

ShiftText

Gets or sets the text being displayed when shift key is pressed.

Declaration

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

Property Value

string