Class CellValidatingEventArgs
Provides data for the CellValidating event
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class CellValidatingEventArgs : GridViewCellCancelEventArgs
Constructors
CellValidatingEventArgs(GridViewRowInfo, GridViewColumn, Object, Object, IInputEditor)
Initializes a new instance of the CellValidatingEventArgs class.
Declaration
public CellValidatingEventArgs(GridViewRowInfo row, GridViewColumn column, object value, object oldValue, IInputEditor editor)
Parameters
GridViewRowInfo
row
The GridViewRowInfo that is validating. |
GridViewColumn
column
The GridViewColumn that is validating. |
System.Object
value
The cell value. |
System.Object
oldValue
The old cell value. |
IInputEditor
editor
The associated active editor |
Properties
OldValue
Gets the old cell value.
Declaration
public object OldValue { get; }
Property Value
System.Object
|
Value
Gets the cell value.
Declaration
public object Value { get; }
Property Value
System.Object
|