Class ValueChangedEventArgs
Represents event arguments for the ValueChanged event in RadGridView.
Inheritance
System.Object
System.EventArgs
ValueChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(GridViewRowInfo, GridViewColumn, Object, Object)
Initializes a new instance of the ValueChangedEventArgs class.
Declaration
public ValueChangedEventArgs(GridViewRowInfo row, GridViewColumn column, object oldValue, object newValue)
Parameters
GridViewRowInfo
row
The row. |
GridViewColumn
column
The column. |
System.Object
oldValue
The old value. |
System.Object
newValue
The new value. |
Properties
Column
Gets the column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
The column. |
NewValue
Gets the new value.
Declaration
public object NewValue { get; }
Property Value
System.Object
The new value. |
OldValue
Gets the old value.
Declaration
public object OldValue { get; }
Property Value
System.Object
The old value. |
Row
Gets the row.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
The row. |