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
Constructors
Initializes a new instance of the ValueChangedEventArgs class.
C#
public ValueChangedEventArgs(GridViewRowInfo row, GridViewColumn column, object oldValue, object newValue)
The row.
columnGridViewColumnThe column.
oldValueobjectThe old value.
newValueobjectThe new value.
Properties
Gets the column.
C#
public GridViewColumn Column { get; }
The column.
Gets the row.
C#
public GridViewRowInfo Row { get; }
The row.