Skip to main content
A newer version of this page is available. .

ErrorsWatchMode Enum

Lists values that specify the errors watch mode.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.2.Core.dll

Declaration

[Flags]
public enum ErrorsWatchMode

Members

Name Description
None

Grid View does not detect errors during the initial data load.

Default

The error watch mode is disabled by default for the master grid view; for the detail grid view, the error watch mode depends on the error watch mode for the master view.

Rows

Grid View detects invalid rows.

Cells

Grid View detects invalid cells.

All

Grid View detects invalid rows and cells.

Related API Members

The following properties accept/return ErrorsWatchMode values:

Remarks

The values listed by this enumeration are used to set the DataViewBase.ErrorsWatchMode property’s value.

When the DataViewBase.ErrorsWatchMode property is set to Rows or Cells the grid detects invalid rows or cells respectively. When the DataViewBase.ErrorsWatchMode property is set to All, both invalid rows and cells are detected.

To disable the errors watch mechanism, set the DataViewBase.ErrorsWatchMode property to None.

See Also