Skip to main content
All docs
V24.2

TreeListRowExportingEventArgs.HasChildren Property

Returns whether the current row contains child rows.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public bool HasChildren { get; }

Property Value

Type Description
Boolean

true if the row has child nodes; otherwise, false.

Remarks

The following code snippet filters out rows that do not have child rows:

async Task ExportXlsx_Click() {
    var options = new TreeListXlExportOptions();
    options.RowExporting = e =>
    {
        if (e.HasChildren == false)
            e.Cancel = true;
    };
    await MyTreeList.ExportToXlsxAsync("ExportResult", options);
}
See Also