Skip to main content

DxTreeView.ShowExpandButtons Property

Specifies whether expand buttons are visible.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Boolean true

true, to display expand buttons; otherwise, false.

Remarks

Use the ShowExpandButtons option to control the expand and collapse buttons’ visibility.

Set the property to false to hide the buttons.

<DxTreeView ShowExpandButtons="false">
    @* ... *@
</DxTreeView>

No expand buttons

See Also