Class GridViewCellValidatingEventArgs
Contains data needed to handle the CellValidating event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCellValidatingEventArgs : CellRoutedEventArgs
Constructors
GridViewCellValidatingEventArgs(GridViewCell, GridViewRowItem, RoutedEvent, Object, Object)
Initializes a new instance of the GridViewCellValidatingEventArgs class.
Declaration
public GridViewCellValidatingEventArgs(GridViewCell gridViewCell, GridViewRowItem rowItem, RoutedEvent routedEvent, object oldValue, object newValue)
Parameters
GridViewCell
gridViewCell
The grid view cell. |
GridViewRowItem
rowItem
The row item. |
RoutedEvent
routedEvent
The routed event. |
System.Object
oldValue
The old value. |
System.Object
newValue
The new value. |
Properties
Cell
Gets or sets the cell.
Declaration
public GridViewCell Cell { get; set; }
Property Value
GridViewCell
The cell. |
EditingElement
Gets or sets the editor element.
Declaration
public object EditingElement { get; }
Property Value
System.Object
The editor element. |
ErrorMessage
Gets or sets the error message.
Declaration
public string ErrorMessage { get; set; }
Property Value
System.String
The error message. |
IsValid
Gets or sets a value indicating whether edited data is valid.
Declaration
public bool IsValid { get; set; }
Property Value
System.Boolean
|
Row
Gets or sets the row.
Declaration
public GridViewRowItem Row { get; set; }
Property Value
GridViewRowItem
The row. |