Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BackstageViewControl.GetTabFromIndex(Int32) Method

Gets a BackstageTabItem by its index.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v24.2.dll

NuGet Package: DevExpress.Wpf.Ribbon

#Declaration

public BackstageTabItem GetTabFromIndex(
    int tabIndex
)

#Parameters

Name Type Description
tabIndex Int32

An integer value that specifies the required tab item’s index.

#Returns

Type Description
BackstageTabItem

A BackstageTabItem at the specified index.

#Remarks

All BackstageTabItems can be accessed via the BackstageViewControl.Tabs collection. Their total count is specified by the BackstageViewControl.TabCount property. You can access an individual tab item using this collection or the GetTabFromIndex method. The method’s tabIndex parameter should specify a value in the range from 0 to TabCount-1. To get a tab item’s index, use the BackstageViewControl.GetTabIndex method.

See Also