HotSpot.TabIndex Property

Definition

Gets or sets the tab index of the HotSpot region.

public:
 virtual property short TabIndex { short get(); void set(short value); };
public virtual short TabIndex { get; set; }
member this.TabIndex : int16 with get, set
Public Overridable Property TabIndex As Short

Property Value

The tab index of the HotSpot region. The default is 0, which indicates that this property is not set.

Exceptions

The specified tab index is not between -32768 and 32767.

Remarks

Use the TabIndex property to specify or determine the tab index of a HotSpot region on the Web Forms page.

When you press the TAB key, the order in which the Web server controls receive focus is determined by the TabIndex property of each control. When a page is initially loaded, the first item that receives focus when the TAB key is pressed is the address bar. Next, the controls on the Web Forms page are tabbed to in ascending order, based on the value of the TabIndex property of each control, starting with the smallest positive, nonzero value. If multiple controls share the same tab index, the controls will receive focus in the order they are declared on the Web Forms page. Finally, controls that have a tab index of zero are tabbed to in the order they are declared.

Note

Only controls with a nonzero tab index will render the tabindex attribute.

You can remove a HotSpot region from the tab order by setting the TabIndex property to a negative value.

Note

This property is supported only in Internet Explorer 4.0 and later.

Applies to

See also