DxTabBase.VisibleIndex Property
In This Article
Specifies the tab’s position among other tabs.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(-1)]
[Parameter]
public int VisibleIndex { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Int32 | -1 | The tab’s visible index. |
#Remarks
The DxTabs component organizes tabs based on their VisibleIndex
in the following sequence:
- Tabs with non-negative visible indexes: The component positions tabs with smaller indexes to the left.
- Tabs with negative visible indexes (
-1
). The display order of these tabs follow the order specified in the component markup.
Note
The Visible property does not affect the Visible
property value.
#Implements
See Also