ClassGridViewCellValidatingEventArgs
Contains data needed to handle the CellValidating event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class GridViewCellValidatingEventArgs : CellRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCellRoutedEventArgsGridViewCellValidatingEventArgs
Inherited Members
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
The grid view cell.
rowItem
The row item.
routedEvent
RoutedEvent
The routed event.
oldValue
The old value.
newValue
The new value.
Properties
Cell
Gets or sets the cell.
Declaration
public GridViewCell Cell { get; set; }
Property Value
The cell.
EditingElement
Gets or sets the editor element.
Declaration
public object EditingElement { get; }
Property Value
The editor element.
ErrorMessage
Gets or sets the error message.
Declaration
public string ErrorMessage { get; set; }
Property Value
The error message.
IsValid
Gets or sets a value indicating whether edited data is valid.
Declaration
public bool IsValid { get; set; }
Property Value
true if this instance is valid; otherwise, false.
Row
Gets or sets the row.
Declaration
public GridViewRowItem Row { get; set; }
Property Value
The row.