Class DataErrorEventArgs
Holds exception data to be custom processed by user code when DataError exception handled is set to true.
Inherited Members
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 DataErrorEventArgs class.
Declaration
public DataErrorEventArgs(RoutedEvent routedEvent, Exception exception, GridViewRow row)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Exception
exception
The exception. |
GridViewRow
row
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.Exception
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.Boolean
|
Row
Gets the row which throws the exception.
Declaration
public GridViewRow Row { get; }
Property Value
GridViewRow
The row. |