Skip to main content

DxNavigationItemBaseComponent<TModel>.Visible Property

Specifies whether the navigation component is visible.

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 component; otherwise, false.

Remarks

Use the Visible property to hide a navigation component.

<DxTreeView>
  <Nodes>
    <DxTreeViewNode Visible="false" Text="Form Layout" />
    <DxTreeViewNode Text="TreeView" />
    <DxTreeViewNode Text="Tabs" />
  </Nodes>
</DxTreeView>

TreeView Nodes

See Also