Skip to main content
All docs
V20.2

PivotGridFieldBase.GetOLAPMembersAsync(AsyncCompletedHandler) Method

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

Namespace: DevExpress.XtraPivotGrid

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

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

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 PivotGridFieldBase.GetUniqueValues method instead.

To obtain OLAP members synchronously, use the PivotGridFieldBase.GetOLAPMembers method.

See Also