A script-enabled browser is required for this page to function properly.

Access Key property

The Access Key property is one of the accessibility properties designed to make reports accessible to the disabled community when output to HTML. This property specifies the value for the ACCESSKEY attribute of the LABEL element, which provides hot-key access to specific input elements. It only has effect when the Label for Field property is used. With assistive utilities, the label of a boilerplate text object and the access key can be displayed in a popup or read by a screen reader when the cursor passes over the cross-referenced input field in report output.

Applies to

Parameter Form boilerplate text objects

Values

A text string not to exceed 256 characters

Default

Blank 

Required/Optional

Optional for paper reports, but required for accessible HTML reports

 Usage notes

Example

<LABEL FOR="Input1" ACCESSKEY="1">
Input Field 1
</LABEL>
<INPUT TYPE="TEXT" 
       ID="Input1" 
       NAME="InputField1"
/>

<LABEL FOR="Input2" ACCESSKEY="2">
Input Field 2
</LABEL>
<INPUT TYPE="TEXT" 
       ID="Input2" 
       NAME="InputField2"
/>
...

See also

Other accessiblity properties:

Alternative Text property (HTML or PDF)

Headers property (HTML or PDF)

ID property (HTML or PDF)

Report Language property (HTML or PDF)

Table Caption property (HTML or PDF)

Label for Field property (HTML only)