EditValueChangedEventArgs Class
Provides data for the PivotGridControl.EditValueChanged event.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.1.dll
NuGet Package: DevExpress.Win.PivotGrid
Declaration
Remarks
The PivotGridControl.EditValueChanged event is raised after an end-user has modified a cell value and closed the editor. Handle the PivotGridControl.EditValueChanged event to save changes made by an end-user to a data source.
Use the following properties to identify the edited cell:
- The ColumnField, RowField and DataField properties return column, row and data fields related to the current cell.
- The ColumnIndex and RowIndex properties return the zero-based index of the cell’s column or row. Note that the index is calculated based on visible rows or columns, thus collapsed and expanded rows/columns have different indexes.
- The ColumnValueType and RowValueType properties return column adn row types.
- If the current cell is a custom total cell, the ColumnCustomTotal and RowCustomTotal properties return column and row custom totals. Otherwise, these properties return null (Nothing in Visual Basic).
Use the Editor property to access the in-place editor instance.
Inheritance
Object
EventArgs
PivotCellEventArgsBase<PivotGridField, DevExpress.XtraPivotGrid.Data.PivotGridViewInfoData, PivotGridCustomTotal>
PivotCellBaseEventArgs
EditValueChangedEventArgs
See Also