Class
ShortcutEventArgs

Encapsulates the data, associated with the IShortcutProvider.OnShortcut callback.

Definition

Namespace:Telerik.WinControls

Assembly:Telerik.WinControls.dll

Syntax:

cs-api-definition
public class ShortcutEventArgs : EventArgs

Inheritance: objectEventArgsShortcutEventArgs

Derived Classes: PartialShortcutEventArgs

Inherited Members EventArgs.Empty

Constructors

ShortcutEventArgs(Control, RadShortcut)

Declaration

cs-api-definition
public ShortcutEventArgs(Control focused, RadShortcut shortcut)

Parameters

focused

Control

shortcut

RadShortcut

Properties

FocusedControl

Gets the control that is currently focused and which will receive the keyboard event.

Declaration

cs-api-definition
public Control FocusedControl { get; }

Property Value

Control

Handled

Determines whether the event is handled. If true, the keyboard message will not be dispatched to the focused control.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

Shortcut

Gets the shortcut that is triggerred.

Declaration

cs-api-definition
public RadShortcut Shortcut { get; }

Property Value

RadShortcut