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

DxTreeView.ExpandButtonIconCssClass Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(null)]
[Parameter]
public string ExpandButtonIconCssClass { get; set; }

Property Value

Type Default Description
String null

A CSS class name.

Remarks

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

<DxTreeView CollapseButtonIconCssClass="oi oi-minus" ExpandButtonIconCssClass="oi oi-plus">
    @* ... *@
</DxTreeView>

TreeView Expand Button

Refer to Icons for more information.

See Also