DxTreeView.ShowExpandButtons Property
Specifies whether expand buttons are visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool ShowExpandButtons { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
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>
See Also