Class TabItemModel
A class to define the properties of a tab Item.
Inheritance
System.Object
TabItemModel
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class TabItemModel : Object
Constructors
TabItemModel()
Declaration
public TabItemModel()
Properties
Content
Specifies the content of Tab item.
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CssClass
Sets the CSS classes to the Tab item to customize its styles.
Declaration
public string CssClass { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Disabled
Specifies a value that indicates whether the control is disabled or not.
Declaration
public bool Disabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Header
The object used for configuring the Tab item header properties.
Declaration
public HeaderModel Header { get; set; }
Property Value
Type | Description |
---|---|
HeaderModel |
HeaderTemplate
Specifies the header content of the Tab item.
Declaration
public RenderFragment HeaderTemplate { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment |
Visible
Specifies a value that indicates whether the tab is visible or not.
Declaration
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |