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

Provides data for the common events of a field.

Definition

Namespace:Telerik.Windows.Controls.GridView.Cells

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class CellRoutedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCellRoutedEventArgs

Derived Classes: CellValidatingRoutedEventArgsGridViewCellValidatingEventArgs

Constructors

Initializes a new instance of the CellRoutedEventArgs class. Provides data for the common events of a field.

C#
public CellRoutedEventArgs(object oldValue, object newValue)
Parameters:oldValueobject

The old value of the field.

newValueobject

The new value of the field.

Properties

Gets the new value of the field.

C#
public object NewValue { get; }

Gets the old value of the cell.

C#
public object OldValue { get; }