RadShortcut
Describes a combination of keys that may be used as a shortcut to RadItem.PerformClick method or any other arbitrary command.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class RadShortcut
Inheritance: objectRadShortcut
Constructors
Default constructor. Initializes an empty RadShortcut instance.
public RadShortcut()
Initializes a new RadShortcut instance, using the specified modifiers and key mappings.
Fields
public static string ControlText
Properties
Gets a list with all the Keys that form the shortcut combination. E.g. we may have M+O and a Modifier CTRL, then the valid shortcut will be CTRL+M+O
public Keys[] KeyMappings { get; }
Gets or sets the Keys value that describes the modifiers for the shortcut.
public Keys Modifiers { get; }
Methods
Gets the human-readable represention of the current key settings.
Determines whether the specified Keys are part of a shortcut combination. E.g. if we have a key mapping CTRL+M+O and the provided keys are CTRL+M, the method will return true.