Skip to main content

CellInfo.CreateDrillDownDataSourceAsync() Method

Returns a list of records used to calculate a summary value for the cell currently being processed asynchronously.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public Task<IEnumerable> CreateDrillDownDataSourceAsync()

Returns

Type Description
Task<IEnumerable>

An asynchronous operation result, containing an object that implements the IEnumerable interface and represents a collection of the underlying data rows.

Remarks

The CreateDrillDownDataSourceAsync method is asynchronous. It starts executing the related operation in a background thread, and immediately returns control. The primary UI thread is not blocked, allowing the application to continue responding to end-user actions.

For more information about the asynchronous mode, see Asynchronous Mode.

See Also