ClassGridViewDataErrorEventArgs
Provides data for the DataError event.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewDataErrorEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsGridViewDataErrorEventArgs
Inherited Members
Constructors
GridViewDataErrorEventArgs(Exception, int, int, GridViewDataErrorContexts)
Initializes a new instance of the RadGridViewDataErrorEventArgs.
Declaration
public GridViewDataErrorEventArgs(Exception exception, int columnIndex, int rowIndex, GridViewDataErrorContexts context)
Parameters
exception
columnIndex
rowIndex
context
Properties
ColumnIndex
Gets the column index of the cell that the event occurs for.
Declaration
public int ColumnIndex { get; }
Property Value
The column index of the that the event occurs for.
Context
Gets details about the state of the RadGridView when the error occurred.
Declaration
public GridViewDataErrorContexts Context { get; }
Property Value
Exception
Gets the exception that represents the error.
RowIndex
Gets the row index of the cell that the event occurs for.
Declaration
public int RowIndex { get; }
Property Value
The row index of the that the event occurs for.
ThrowException
Gets or sets a value indicating whether to throw the exception after the RadGridViewDataErrorEventHandler delegate is finished with it.