Image Area BaseAccess Key Property
This is used to get or set the access key (a shortcut key or mnemonic) for the image area
Definition
Namespace: EWSoftware.ImageMaps.Windows.Forms
Assembly: EWSoftware.ImageMaps.Windows.Forms (in EWSoftware.ImageMaps.Windows.Forms.dll) Version: 2024.12.31.0
The value should be a single alphanumeric character. If the area is enabled and its Action is set to FireEvent, pressing the Alt key plus the access key will give the area the keyboard focus.
Assembly: EWSoftware.ImageMaps.Windows.Forms (in EWSoftware.ImageMaps.Windows.Forms.dll) Version: 2024.12.31.0
C#
public string? AccessKey { get; set; }VB
Public Property AccessKey As String
Get
SetC++
public:
virtual property String^ AccessKey {
String^ get () sealed;
void set (String^ value) sealed;
}F#
abstract AccessKey : string with get, set
override AccessKey : string with get, setProperty Value
StringThe value should be a single alphanumeric character. If the area is enabled and its Action is set to FireEvent, pressing the Alt key plus the access key will give the area the keyboard focus.
Implements
IImageAreaAccessKeyExceptions
| ArgumentOutOfRangeException | The specified access key is not a single character string. |