Skip to main content

BootstrapTabPage Class

Defines an individual tab page.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public class BootstrapTabPage :
    TabPage,
    IBSBadgeOwner,
    IBootstrapTab

Remarks

The BootstrapTabPage class contains the settings which define an individual tabbed page within the BootstrapPageControl. The tab pages are used to display other controls. They provide a client area to which visual elements can be added. A collection of the page’s child elements can be accessed via the ContentControlCollectionItem.Controls property.

Each page has a header which can display an image and text. An end user can click the page header to switch between the pages in a page control. Note that only one tab page is visible at a time.

All the tab pages are stored in the page control’s BootstrapPageControl.TabPages collection. Individual pages can be accessed using index notation.

The tab page’s visibility and position are specified by its TabBase.Visible and TabBase.VisibleIndex properties. The TabBase.Enabled property specifies whether the page can be activated. A disabled page cannot be activated by an end user or via code.

Note that the BootstrapTabPage class has a client-side equivalent - an object of the ASPxClientTab type.

See Also