Contains data needed to handle the CellValidating event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
public class GridViewCellValidatingEventArgs : CellRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCellRoutedEventArgsGridViewCellValidatingEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewCellValidatingEventArgs class.
C#
public GridViewCellValidatingEventArgs(GridViewCell gridViewCell, GridViewRowItem rowItem, RoutedEvent routedEvent, object oldValue, object newValue)
The grid view cell.
rowItemGridViewRowItemThe row item.
routedEventRoutedEventThe routed event.
oldValueobjectThe old value.
newValueobjectThe new value.
Properties
Gets or sets the cell.
C#
public GridViewCell Cell { get; set; }
The cell.
Gets or sets the editor element.
C#
public object EditingElement { get; }
The editor element.
Gets or sets the error message.
C#
public string ErrorMessage { get; set; }
The error message.
Gets or sets a value indicating whether edited data is valid.
C#
public bool IsValid { get; set; }
true if this instance is valid; otherwise, false.
Gets or sets the row.
C#
public GridViewRowItem Row { get; set; }
The row.