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

BackstageViewControl.GetTabFromIndex(Int32) Method

Gets a BackstageTabItem by its index.

Namespace: DevExpress.Xpf.Ribbon

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Ribbon, DevExpress.Wpf.Navigation

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