New to Telerik UI for WPFStart a free 30-day trial

Contains info needed to handle CellEditEndedEvent.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class GridViewCellEditEndedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsGridViewCellEditEndedEventArgs

Constructors

Initializes a new instance of the GridViewCellEditEndedEventArgs class.

C#
public GridViewCellEditEndedEventArgs(GridViewCell cell, object newData, object oldData, RoutedEvent routedEvent)
Parameters:cellGridViewCell

The cell.

newDataobject

The new data.

oldDataobject

The old data.

routedEventRoutedEvent

The routed event.

Properties

Gets or sets the edited cell.

C#
public GridViewCell Cell { get; }
Property Value:

The cell.

Gets or sets the edit action.

C#
public GridViewEditAction EditAction { get; }
Property Value:

The edit action.

Gets or sets the editor element.

C#
public object EditingElement { get; }
Property Value:

The editor element.

Gets or sets the new data.

C#
public object NewData { get; }
Property Value:

The new data.

Gets or sets the old data.

C#
public object OldData { get; }
Property Value:

The old data.