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

Represents event arguments for the ValueChanged event in RadGridView.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ValueChangedEventArgs class.

C#
public ValueChangedEventArgs(GridViewRowInfo row, GridViewColumn column, object oldValue, object newValue)
Parameters:rowGridViewRowInfo

The row.

columnGridViewColumn

The column.

oldValueobject

The old value.

newValueobject

The new value.

Properties

Gets the column.

C#
public GridViewColumn Column { get; }
Property Value:

The column.

Gets the new value.

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

The new value.

Gets the old value.

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

The old value.

Gets the row.

C#
public GridViewRowInfo Row { get; }
Property Value:

The row.