Blazorise Tab API

Explore the Blazorise Tab API reference for parameters, events, methods, and related types.

For examples and usage guidance, see the Tab documentation.

API

Parameters

Tabs

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this Tabs.

RenderFragmentnull
Content

Container for tab panes.

RenderFragmentnull
FullWidth

Makes the tab items to extend the full available width.

boolfalse
Items

Container for tab items.

RenderFragmentnull
Justified

Makes the tab items to extend the full available width, but every item will be the same width.

boolfalse
Pills

Makes the tab items to appear as pills.

boolfalse
RenderMode

Specifies how the tabs content will be rendered.

Possible values:Default, LazyLoad, LazyReload

TabsRenderModeTabsRenderMode.Default
SelectedTab

Specifies the currently selected tab name.

string
TabPosition

Position of tab items.

Possible values:Top, Bottom, Start, End

TabPositionTabPosition.Top
VerticalItemsColumnSize

Controls the size of the items bar when in vertical mode. If left undefined it will default to the ColumnSize.IsAuto.

IFluentColumnnull

Tab

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this Tab.

RenderFragmentnull
Disabled

Flag to indicate that the tab is not responsive for user interaction.

boolfalse
Name

Specifies the tab name. Must match the corresponding panel name.

string

TabsContent

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this TabsContent.

RenderFragmentnull
RenderMode

Specifies how the tabs content will be rendered.

Possible values:Default, LazyLoad, LazyReload

TabsRenderModeTabsRenderMode.Default
SelectedPanel

Specifies the currently selected panel name.

string

TabPanel

Parameter Description TypeDefault
ChildContent

Specifies the content to be rendered inside this TabPanel.

RenderFragmentnull
Name

Specifies the panel name. Must match the corresponding tab name.

string

Events

Tabs

Event Description Type
SelectedTabChanged

Occurs after the selected tab has changed.

EventCallback<string>

Tab

Event Description Type
Clicked

Notifies when the item is clicked.

EventCallback<MouseEventArgs>

TabsContent

Event Description Type
SelectedPanelChanged

Occurs after the selected panel has changed.

EventCallback<string>

Methods

Tabs

Method DescriptionReturnParameters
SelectTab Sets the active tab by the name. Taskstring tabName

TabsContent

Method DescriptionReturnParameters
SelectPanel Sets the active panel by the name. Taskstring name
On this page