HotSpot.AccessKey Property
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] public: virtual property String^ AccessKey { String^ get (); void set (String^ value); }
/** @property */ public String get_AccessKey () /** @property */ public void set_AccessKey (String value)
public function get AccessKey () : String public function set AccessKey (value : String)
Not applicable.
Property Value
The access key for quick navigation to the HotSpot region. The default value is Empty, which indicates that this property is not set.Use the AccessKey property to specify the keyboard shortcut for a HotSpot region. This allows you to navigate quickly to the region by pressing the ALT key and the key for the specified character on the keyboard. For example, setting the access key of a HotSpot region to the string "D" indicates that the user can navigate to the control by pressing ALT+D.
Only a single character string is allowed for the AccessKey property. If you attempt to set this property to a value that is neither a null reference (Nothing in Visual Basic), Empty, nor a single character string, an exception is thrown.
Note: |
|---|
| This property is supported only in Internet Explorer 4.0 and later. |
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.
| Topic | Location |
|---|---|
| How to: Check Accessibility of Web Pages in Visual Web Developer | Building ASP .NET Web Applications in Visual Studio |
Note: