wpf-devexpress-dot-xpf-dot-pivotgrid-dot-pivotcellbaseeventargs-dot-createdrilldowndatasource-x28-system-dot-collections-dot-generic-dot-list-system-dot-string-x29.md
Returns a list of records used to calculate a summary value for the current cell. Allows you to specify the columns to return.
Namespace : DevExpress.Xpf.PivotGrid
Assembly : DevExpress.Xpf.PivotGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PivotGrid
public PivotDrillDownDataSource CreateDrillDownDataSource(
List<string> customColumns
)
Public Function CreateDrillDownDataSource(
customColumns As List(Of String)
) As PivotDrillDownDataSource
| Name | Type | Description |
|---|---|---|
| customColumns | List<String> |
A list of columns to return.
|
| Type | Description |
|---|---|
| PivotDrillDownDataSource |
A PivotDrillDownDataSource object that contains the underlying data.
|
Tip
Refer to the CreateDrillDownDataSource article for an example.
The following limitations apply if you use the CreateDrillDownDataSource method in OLAP:
In server mode, the CreateDrillDownDataSource method returns only visible fields. To get values of hidden fields, use the method’s overloads with the customColumns parameter which allow you to specify the columns to be returned.
See Also