DxNavigationItemBaseComponent<TModel>.Visible Property
Specifies whether the navigation component is visible.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
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>
See Also