Class ShortcutEventArgs
Encapsulates the data, associated with the IShortcutProvider.OnShortcut callback.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class ShortcutEventArgs : EventArgs
Constructors
ShortcutEventArgs(Control, RadShortcut)
Declaration
public ShortcutEventArgs(Control focused, RadShortcut shortcut)
Parameters
System.Windows.Forms.Control
focused
|
RadShortcut
shortcut
|
Properties
FocusedControl
Gets the control that is currently focused and which will receive the keyboard event.
Declaration
public Control FocusedControl { get; }
Property Value
System.Windows.Forms.Control
|
Handled
Determines whether the event is handled. If true, the keyboard message will not be dispatched to the focused control.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
Shortcut
Gets the shortcut that is triggerred.
Declaration
public RadShortcut Shortcut { get; }
Property Value
RadShortcut
|