Skip to main content
Row

DataBindingErrorEventArgs(DataBindingErrorType, DataBindingDirection, Int32, Int32) Constructor

Initializes a new instance of the DataBindingErrorEventArgs class with the default settings.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public DataBindingErrorEventArgs(
    DataBindingErrorType errorType,
    DataBindingDirection direction,
    int rowIndex,
    int columnIndex
)

Parameters

Name Type Description
errorType DataBindingErrorType

A DataBindingErrorType enumeration member that indicates the cause of an error.

direction DataBindingDirection

A DataBindingDirection enumeration value that indicates whose value is updated during binding.

rowIndex Int32

An integer that is the Row.Index property value of a row which caused an error.

columnIndex Int32

An integer that is the Column.Index property value of a column which caused an error.

See Also