Interface ITab
Interface describing the public properties of a Tab instance you can access.
Namespace: Telerik.Blazor.Components.TabStrip
Assembly: Telerik.Blazor.dll
Syntax
public interface ITab
Properties
ChildContent
The contents of the tab.
Declaration
RenderFragment ChildContent { get; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Content
The content of the tab.
Declaration
RenderFragment Content { get; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Disabled
Whether the tab is disabled so the user cannot select it.
Declaration
bool Disabled { get; }
Property Value
System.Boolean
|
HeaderTemplate
The header template of the tab.
Declaration
RenderFragment HeaderTemplate { get; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Id
The id of the tab.
Declaration
string Id { get; }
Property Value
System.String
|
Title
The title of the tab.
Declaration
string Title { get; }
Property Value
System.String
|
Visible
Whether the tab is visible. Default value is true.
Declaration
bool Visible { get; }
Property Value
System.Boolean
|