WebTabSet supports the following keyboard interface for navigating its contents:
Tab Control |
Left Arrow |
Selects the previous item |
Right Arrow |
Selects the next item |
Up Arrow |
Selects the parent item |
Down Arrow |
Selects the first child item |
Home |
Selects the first item |
End |
Selects the last item |
Others |
Shift + Tab |
Moves keyboard focus to the previous control |
Tab |
Moves keyboard focus to the next control |
This sample demonstrates three additional WebTabSet accessibility features:
1. The "AccessKey" property is set to "w" allowing a shortcut key to activate the control.
Note, not all web browsers support or handle this property in the same way.
WebTabSet.AccessKey = "w";
2. The "EnableOutline" property is set to "true" enabling an outline box to appear around the control when it has keyboard focus.
The default value for this property is "false".
WebTabSet.EnableOutline = true;
3. The "TabIndex" property is set to "1" specifying the tab order to receive keyboard focus for the control.
WebTabSet.TabIndex = 1;
The current control with keyboard focus is:
(Not supported)
In this sample the WebTabSet is allowing you to select one of our products, organized by supported platform.
Clicking the "Submit" button will display the full path for your selection below:
Click the "Reset" link to clear your selection.