Skip to main content
All docs
V20.2

PivotGridField.GetOlapMembersAsync(AsyncCompletedHandler) Method

Returns an array of the OLAP members for the current field asynchronously.

Namespace: DevExpress.Xpf.PivotGrid

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

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

Declaration

public void GetOlapMembersAsync(
    AsyncCompletedHandler asyncCompleted
)

Parameters

Name Type Description
asyncCompleted AsyncCompletedHandler

An AsyncCompletedHandler delegate referencing a method that should be executed after the operation is completed. The array of the OLAP members is passed to this method as a parameter.

Remarks

The GetOlapMembersAsync method returns null if the current field represents a measure.

If the PivotGridControl is not bound to an OLAP cube, use the PivotGridField.GetUniqueValues method instead.

To obtain OLAP members synchronously, use the PivotGridField.GetOlapMembers method.

See Also