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:
C#
public class KeyboardModifiersState
Inheritance: objectKeyboardModifiersState
Constructors
Initializes a new instance of the KeyboardModifiersState class.
C#
public KeyboardModifiersState()
Properties
Gets or sets a value indicating whether the Alt key is down.
C#
public Func<bool> IsAltDown { get; set; }
Gets or sets a value indicating whether the Control key is down.
C#
public Func<bool> IsControlDown { get; set; }
Gets or sets a value indicating whether the Shift key is down.
C#
public Func<bool> IsShiftDown { get; set; }