Class VirtualGridCellValidatingEventArgs
Provides data for the CellValidating event.
Inheritance
System.Object
System.EventArgs
VirtualGridCellValidatingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridCellValidatingEventArgs : VirtualGridCellEventArgs
Constructors
VirtualGridCellValidatingEventArgs(Int32, Int32, VirtualGridViewInfo, Object)
Initializes a new instance of the VirtualGridCellValidatingEventArgs class.
Declaration
public VirtualGridCellValidatingEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo, object newValue)
Parameters
System.Int32
rowIndex
Index of the row. |
System.Int32
columnIndex
Index of the column. |
VirtualGridViewInfo
viewInfo
The view info. |
System.Object
newValue
The new value. |
Properties
Cancel
Gets or sets a value indicating whether the event is canceled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
NewValue
Gets the new cell value.
Declaration
public object NewValue { get; }
Property Value
System.Object
|