wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-c2529711.md
Gets or sets data error types to be visualized by a data-aware control (e.g. GridControl). This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public ItemsSourceErrorInfoShowMode ItemsSourceErrorInfoShowMode { get; set; }
Public Property ItemsSourceErrorInfoShowMode As ItemsSourceErrorInfoShowMode
| Type | Description |
|---|---|
| DevExpress.Xpf.Grid.ItemsSourceErrorInfoShowMode |
A DevExpress.Xpf.Grid.ItemsSourceErrorInfoShowMode enumeration value that specifies data error types to be visualized.
|
There are two data error types that can be visualized by a data-aware control: cell value error and row error. By default, the value of the ItemsSourceErrorInfoShowMode property is set to RowAndCell , so both data error types are visualized.
The ItemsSourceErrorInfoShowMode property can be set to one of the following:
| Enum value | Description |
|---|---|
| None | Neither row nor cell value error are visualized |
| Row | Only a row error is visualized |
| Cell | Only a cell value error is visualized |
| RowAndCell | Both row and cell value errors are visualized |
To learn more, see Error Notification.
See Also