Class
CellValidatingEventArgs

Provides data for the CellValidating event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class CellValidatingEventArgs : GridViewCellCancelEventArgs

Inheritance: objectEventArgsCancelEventArgsGridViewCellCancelEventArgsCellValidatingEventArgs

Inherited Members GridViewCellCancelEventArgs.ActiveEditorGridViewCellCancelEventArgs.RowGridViewCellCancelEventArgs.ColumnGridViewCellCancelEventArgs.ColumnIndexGridViewCellCancelEventArgs.RowIndexCancelEventArgs.CancelEventArgs.Empty

Constructors

CellValidatingEventArgs(GridViewRowInfo, GridViewColumn, object, object, IInputEditor)

Initializes a new instance of the CellValidatingEventArgs class.

Declaration

cs-api-definition
public CellValidatingEventArgs(GridViewRowInfo row, GridViewColumn column, object value, object oldValue, IInputEditor editor)

Parameters

row

GridViewRowInfo

The GridViewRowInfo that is validating.

column

GridViewColumn

The GridViewColumn that is validating.

value

object

The cell value.

oldValue

object

The old cell value.

editor

IInputEditor

The associated active editor

Properties

OldValue

Gets the old cell value.

Declaration

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

Property Value

object

Value

Gets the cell value.

Declaration

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

Property Value

object