Class
VirtualGridCellValidatingEventArgs

Provides data for the CellValidating event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class VirtualGridCellValidatingEventArgs : VirtualGridCellEventArgs

Inheritance: objectEventArgsVirtualGridEventArgsVirtualGridCellEventArgsVirtualGridCellValidatingEventArgs

Inherited Members VirtualGridCellEventArgs.RowIndexVirtualGridCellEventArgs.ColumnIndexVirtualGridEventArgs.ViewInfoEventArgs.Empty

Constructors

VirtualGridCellValidatingEventArgs(int, int, VirtualGridViewInfo, object)

Initializes a new instance of the VirtualGridCellValidatingEventArgs class.

Declaration

cs-api-definition
public VirtualGridCellValidatingEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo, object newValue)

Parameters

rowIndex

int

Index of the row.

columnIndex

int

Index of the column.

viewInfo

VirtualGridViewInfo

The view info.

newValue

object

The new value.

Properties

Cancel

Gets or sets a value indicating whether the event is canceled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

NewValue

Gets the new cell value.

Declaration

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

Property Value

object