Skip to main content

PivotGridField.GetOLAPMembersAsync(AsyncCompletedHandler) Method

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

Namespace: DevExpress.Xpf.PivotGrid

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

Declaration

public void GetOLAPMembersAsync(
    AsyncCompletedHandler asyncCompleted
)
Public Sub GetOLAPMembersAsync(
    asyncCompleted As AsyncCompletedHandler
)

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.

See Also