Back to Devexpress

ErrorsWatchMode Enum

wpf-devexpress-dot-xpf-dot-grid-bbcf7f6b.md

latest1.9 KB
Original Source

ErrorsWatchMode Enum

Lists values that specify the errors watch mode.

Namespace : DevExpress.Xpf.Grid

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

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
[Flags]
public enum ErrorsWatchMode
vb
<Flags>
Public Enum ErrorsWatchMode

Members

NameDescription
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.

|

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

DevExpress.Xpf.Grid Namespace