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.LeftTopCellChanged Event

Occurs after the Pivot Grid Control is scrolled.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

public event EventHandler<PivotLeftTopCellChangedEventArgs> LeftTopCellChanged

#Event Data

The LeftTopCellChanged event's data class is PivotLeftTopCellChangedEventArgs. The following properties provide information specific to this event:

Property Description
NewValue Gets the coordinates of the currently left top visible cell.
OldValue Gets the coordinates of the cell that was visible at the top left before scrolling.

#Remarks

Use the event parameter’s PivotLeftTopCellChangedEventArgs.OldValue and PivotLeftTopCellChangedEventArgs.NewValue properties, to obtain the old and new coordinates of the left top visible cell, respectively.

See Also