Back to Devexpress

TabsPosition Enum

blazor-devexpress-dot-blazor-96e930c6.md

latest1.9 KB
Original Source

TabsPosition Enum

Lists values that specify where tab headers appear relative to content.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum TabsPosition

Members

NameDescriptionIllustration
Top

Tab headers are above content.

|

| | Bottom |

Tab headers are below content.

|

| | Left |

Tab headers are to the left of content.

|

| | Right |

Tab headers are to the right of content.

|

|

The following properties accept/return TabsPosition values:

Remarks

This example positions tab headers below the component:

razor
<DxTabs TabsPosition="TabsPosition.Bottom">
    <DxTabPage Text="Home">
        <div class="p-2">
            The Home tab's content
        </div>
    </DxTabPage>
    <DxTabPage Text="Products">
        <div class="p-2">
            The Products tab's content
        </div>
    </DxTabPage>
    <DxTabPage Text="Support">
        <div class="p-2">
            The Support tab's content
        </div>
    </DxTabPage>
</DxTabs>

Run Demo: Tab Position

See Also

DevExpress.Blazor Namespace