PivotGridControl.LeftTopCellChanged Event
In This Article
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 |
---|---|
New |
Gets the coordinates of the currently left top visible cell. |
Old |
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