Class
KeyboardModifiersState

Represents a class that holds which keyboard modifiers are pressed. It is used for the selection behaviors.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public class KeyboardModifiersState

Inheritance: objectKeyboardModifiersState

Constructors

KeyboardModifiersState()

Initializes a new instance of the KeyboardModifiersState class.

Declaration

cs-api-definition
public KeyboardModifiersState()

Properties

IsAltDown

Gets or sets a value indicating whether the Alt key is down.

Declaration

cs-api-definition
public Func<bool> IsAltDown { get; set; }

Property Value

Func<bool>

IsControlDown

Gets or sets a value indicating whether the Control key is down.

Declaration

cs-api-definition
public Func<bool> IsControlDown { get; set; }

Property Value

Func<bool>

IsShiftDown

Gets or sets a value indicating whether the Shift key is down.

Declaration

cs-api-definition
public Func<bool> IsShiftDown { get; set; }

Property Value

Func<bool>