Interface
ITab

Interface describing the public properties of a Tab instance you can access.

Definition

Namespace:Telerik.Blazor.Components.TabStrip

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public interface ITab

Properties

ChildContent

The contents of the tab.

Declaration

cs-api-definition
RenderFragment ChildContent { get; }

Property Value

RenderFragment

Content

The content of the tab.

Declaration

cs-api-definition
RenderFragment Content { get; }

Property Value

RenderFragment

Disabled

Whether the tab is disabled so the user cannot select it.

Declaration

cs-api-definition
bool Disabled { get; }

Property Value

bool

HeaderTemplate

The header template of the tab.

Declaration

cs-api-definition
RenderFragment HeaderTemplate { get; }

Property Value

RenderFragment

Id

The id of the tab.

Declaration

cs-api-definition
string Id { get; }

Property Value

string

Title

The title of the tab.

Declaration

cs-api-definition
string Title { get; }

Property Value

string

Visible

Whether the tab is visible. Default value is true.

Declaration

cs-api-definition
bool Visible { get; }

Property Value

bool

Methods

Refresh()

Re-renders the tab.

Declaration

cs-api-definition
void Refresh()