Class KeyboardModifiersState
Represents a class that holds which keyboard modifiers are pressed. It is used for the selection behaviors.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class KeyboardModifiersState : Object
Constructors
KeyboardModifiersState()
Initializes a new instance of the KeyboardModifiersState class.
Declaration
public KeyboardModifiersState()
Properties
IsAltDown
Gets or sets a value indicating whether the Alt key is down.
Declaration
public Func<bool> IsAltDown { get; set; }
Property Value
System.Func<System.Boolean>
|
IsControlDown
Gets or sets a value indicating whether the Control key is down.
Declaration
public Func<bool> IsControlDown { get; set; }
Property Value
System.Func<System.Boolean>
|
IsShiftDown
Gets or sets a value indicating whether the Shift key is down.
Declaration
public Func<bool> IsShiftDown { get; set; }
Property Value
System.Func<System.Boolean>
|