AccessibleObject.KeyboardShortcut Property

Definition

Gets the shortcut key or access key for the accessible object.

C#
public virtual string KeyboardShortcut { get; }
C#
public virtual string? KeyboardShortcut { get; }

Property Value

The shortcut key or access key for the accessible object, or null if there is no shortcut key associated with the object.

Exceptions

The shortcut for the control cannot be retrieved.

Remarks

An access key, also known as a mnemonic, is an underlined character in the text of a menu, menu item, label of a button, or some other control. For example, a user can display a menu by pressing the ALT key while also pressing the indicated underlined key, such as ALT+F, to open the File menu. To use the access key of a menu item, the menu containing the item must be active. Controls such as toolbar buttons and menu items often have an associated shortcut key. A menu item can have both an access key and a shortcut key associated with it. If the value of the KeyboardShortcut property is a single character, you can assume it is an access key.

Notes to Inheritors

All objects that have a shortcut key or access key should support this property.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also