PivotGridControl.CreateDrillDownDataSourceAsync(AsyncCompletedHandler) Method
Returns a list of records used to calculate summary values for all cells asynchronously.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v14.2.dll
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
async |
Async |
An Async |
#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.
The drill-down data source (a PivotDrillDownDataSource instance) is passed to the asyncCompleted delegate via the result parameter. This parameter returns an AsyncOperationResult instance. Use the AsyncOperationResult.Value property to obtain the drill-down data source.
To obtain underlying data for a particular cell, use other overloads of the CreateDrillDownDataSourceAsync method that take the columnIndex and rowIndex parameters.
To create a drill-down data source synchronously, use the PivotGridControl.CreateDrillDownDataSource method.
NOTE
Calling the Create