Skip to main content
Version: 4.1

DataGridViewDataErrorEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the DataError event.

public class DataGridViewDataErrorEventArgs : DataGridViewCellCancelEventArgs

Constructors

Instance member DataGridViewDataErrorEventArgs(exception, columnIndex, rowIndex)

Initializes a new instance of the DataGridViewDataErrorEventArgs class.

NameTypeDescription
exceptionExceptionThe exception that occurred.
columnIndexInt32The column index of the cell that raised the DataError.
rowIndexInt32The row index of the cell that raised the DataError.

Properties

Instance member Exception

Exception: Returns the exception that represents the error.

Instance member ThrowException

Boolean: Returns or sets whether to throw the exception after the DataGridViewDataErrorEventHandler delegate is finished with it.

Throws:

Used By

NameDescription
DataGridViewDataErrorEventHandlerRepresents the method that will handle the DataError event of a DataGridView.