Skip to main content
A newer version of this page is available.
All docs
V19.1

PivotGridFieldBase.GetOLAPMembersAsync(AsyncCompletedHandler) Method

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

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