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

ASPxPageControl.ActiveTabPage Property

Gets or sets an active tabbed page within the ASPxPageControl.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public TabPage ActiveTabPage { get; set; }

Property Value

Type Description
TabPage

A TabPage object representing the selected tabbed page.

Remarks

The ASPxPageControl allows end users to select pages via mouse clicks on their tabs. The page control also provides an ability to make tabbed pages active via code. You can use the ActiveTabPage property for this purpose.

Note that a page control always has an active tabbed page and only one page can be active within a page control at a time.

In order to make a page, specified by its index within the ASPxPageControl.TabPages collection active, use the ASPxTabControlBase.ActiveTabIndex property.

See Also