Version

CellEditing Event

This event is raised before a PivotCell has exited edit mode.
Syntax
'Declaration
 
Public Event CellEditing As EventHandler(Of PivotCellEditingEventArgs)
public event EventHandler<PivotCellEditingEventArgs> CellEditing
Event Data

The event handler receives an argument of type PivotCellEditingEventArgs containing data related to this event. The following PivotCellEditingEventArgs properties provide information specific to this event.

PropertyDescription
Cancel Gets or sets a value indicating whether the event should be cancelled.
Cell (Inherited from Infragistics.Controls.Grids.PivotCellEditedEventArgs)Gets the PivotCell that was clicked.
ColumnIndex (Inherited from Infragistics.Controls.Grids.PivotCellEditedEventArgs)Gets the index of the column.
CustomEditor Gets the UI element which was provided by user as custom editor.
EditedValue (Inherited from Infragistics.Controls.Grids.PivotCellEditedEventArgs)Gets the edited value.
Editor Gets the UI element responsible for editing.
Measure (Inherited from Infragistics.Controls.Grids.PivotCellEditedEventArgs)Gets the measure.
RowIndex (Inherited from Infragistics.Controls.Grids.PivotCellEditedEventArgs)Gets the index of the row.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also