Skip to main content
A newer version of this page is available. .
Tab

ASPxTabControl.ActiveTab Property

Gets or sets the active tab within the ASPxTabControl.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public Tab ActiveTab { get; set; }

Property Value

Type Description
Tab

A Tab object representing the selected tab.

Remarks

The ASPxTabControl allows end users to select tabs via mouse clicks. The tab control also provides the ability to make tabs active via code. You can use the ActiveTab property for this purpose.

Note that a tab control always has the active tab and only one tab can be active within a tab control at the same time.

In order to make a tab, specified by its index within the ASPxTabControl.Tabs collection active, use the ASPxTabControlBase.ActiveTabIndex property.

See Also