Skip to main content
All docs
V20.2

PivotGridControl.CreateServerModeDrillDownDataSourceAsync(Int32, Int32, List<String>, AsyncCompletedHandler) Method

OBSOLETE

The CreateServerModeDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource() method instead.

In server mode, returns a list of records used to calculate a summary value for the specified cell asynchronously. Allows you to specify which columns should be returned.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.PivotGrid, DevExpress.Wpf.PivotGrid

Declaration

[Obsolete("The CreateServerModeDrillDownDataSource method is obsolete now. Use the CreateDrillDownDataSource method instead.")]
public void CreateServerModeDrillDownDataSourceAsync(
    int columnIndex,
    int rowIndex,
    List<string> customColumns,
    AsyncCompletedHandler asyncCompleted
)

Parameters

Name Type Description
columnIndex Int32

A zero-based integer which identifies the visible index of the column.

rowIndex Int32

A zero-based integer which identifies the visible index of the row.

customColumns List<String>

A list of columns to be returned.

asyncCompleted AsyncCompletedHandler

A AsyncCompletedHandler delegate referencing a method that should be executed after the operation is completed. The drill-down data source is passed to this method as a parameter.

See Also