Class DataErrorEventArgs
Holds exception data to be custom processed by user code when DataError exception handled is set to true.
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class DataErrorEventArgs : RadRoutedEventArgs
Constructors
DataErrorEventArgs(RoutedEvent, Exception, GridViewRow)
Initializes a new instance of the Data
Declaration
public DataErrorEventArgs(RoutedEvent routedEvent, Exception exception, GridViewRow row)
Parameters
System. The routed event. |
System. The exception. |
Grid The row which raises the exception. |
Properties
Exception
Gets or sets the exception associated with the data error.
Declaration
public Exception Exception { get; }
Property Value
System. The exception. |
KeepRowInEditMode
Gets or sets a value indicating whether row will stay in edit mode.
Declaration
public bool KeepRowInEditMode { get; set; }
Property Value
System.
|
Row
Gets the row which throws the exception.
Declaration
public GridViewRow Row { get; }
Property Value
Grid The row. |