Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.AsyncOperationCompleted Event

Occurs after an asynchronous operation has been completed.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

public event EventHandler AsyncOperationCompleted

#Event Data

The AsyncOperationCompleted event's data class is EventArgs.

#Remarks

The AsyncOperationCompleted event occurs after an asynchronous operation has been completed, and before a custom procedure specified by the AsyncCompletedHandler delegate is started (if implemented).

Note

For certain asynchronous operations, Pivot Grid Control automatically performs specific actions to handle operation results after the background thread is completed. The AsyncOperationCompleted event is raised before these actions are started, so that the pivot grid’s state at the moment of executing the event handler may be invalid. Therefore, it is not safe to perform operations that depend on the current pivot grid’s settings, data or layout in the AsyncOperationCompleted event handler.

The PivotGridControl.AsyncOperationStarting event occurs before an asynchronous operation is started.

See Also