Skip to main content
A newer version of this page is available. .

PivotGridControl.LeftTopCellChanged Event

Occurs after the Pivot Grid Control is scrolled.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

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