Skip to main content
A newer version of this page is available. .

DxTreeView.ShowExpandButtons Property

Specifies whether expand buttons are visible.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public bool ShowExpandButtons { get; set; }

Property Value

Type Description
Boolean

true, to display expand buttons; otherwise, false.

Remarks

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

TreeView Expand and Collapse Buttons

Set the property to false to hide the buttons.

<DxTreeView ShowExpandButtons="false">
    ...
</DxTreeView>
See Also