New to Telerik UI for WinFormsStart a free 30-day trial

Provides data for the CellValidated event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class CellValidatedEventArgs : GridViewCellEventArgsBase

Inheritance: objectEventArgsGridViewCellEventArgsBaseCellValidatedEventArgs

Inherited Members GridViewCellEventArgsBase.Equals(object)GridViewCellEventArgsBase.GetHashCode()GridViewCellEventArgsBase.RowGridViewCellEventArgsBase.ColumnGridViewCellEventArgsBase.ColumnIndexGridViewCellEventArgsBase.RowIndexEventArgs.Empty...

Constructors

Initializes a new instance of the CellValidatedEventArgs class.

C#
public CellValidatedEventArgs(GridViewRowInfo row, GridViewColumn column, object value)
Parameters:rowGridViewRowInfo

The GridViewRowInfo that is validated.

columnGridViewColumn

The GridViewColumn that is validated.

valueobject

The cell value.

Properties

Gets the cell value.

C#
public object Value { get; }