Class
ValueChangedEventArgs

Represents event arguments for the ValueChanged event in RadGridView.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class ValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ValueChangedEventArgs(GridViewRowInfo, GridViewColumn, object, object)

Initializes a new instance of the ValueChangedEventArgs class.

Declaration

cs-api-definition
public ValueChangedEventArgs(GridViewRowInfo row, GridViewColumn column, object oldValue, object newValue)

Parameters

row

GridViewRowInfo

The row.

column

GridViewColumn

The column.

oldValue

object

The old value.

newValue

object

The new value.

Properties

Column

Gets the column.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

The column.

NewValue

Gets the new value.

Declaration

cs-api-definition
public object NewValue { get; }

Property Value

object

The new value.

OldValue

Gets the old value.

Declaration

cs-api-definition
public object OldValue { get; }

Property Value

object

The old value.

Row

Gets the row.

Declaration

cs-api-definition
public GridViewRowInfo Row { get; }

Property Value

GridViewRowInfo

The row.