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

DxTreeView.CollapseButtonIconCssClass Property

Specify a CSS class for the collapse button’s icon.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string CollapseButtonIconCssClass { get; set; }

Property Value

Type Description
String

A CSS class name.

Remarks

Use the ExpandButtonIconCssClass and CollapseButtonIconCssClass properties to specify CSS classes for expand and collapse buttons.

<DxTreeView ExpandButtonIconCssClass="oi oi-chevron-right" CollapseButtonIconCssClass="oi oi-chevron-bottom">
    ...
</DxTreeView>

TreeView Expand and Collapse Buttons

Refer to Icons for more information.

See Also