BackstageViewControl.GetTabFromIndex(Int32) Method
In This Article
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 |
---|---|---|
tab |
Int32 | An integer value that specifies the required tab item’s index. |
#Returns
Type | Description |
---|---|
Backstage |
A Backstage |
#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