Skip to main content

DxTabBase.Visible Property

Specifies whether a tab is visible or hidden.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }

Property Value

Type Default Description
Boolean true

true to show the tab; otherwise, false.

Remarks

Use the Visible property to hide a tab.

<DxTabs>
    <DxTab Text="Hidden tab" Visible="false"></DxTab>
    @* ... *@
</DxTabs>

Run Demo: Tabs

See Also