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

DataViewBase.ItemsSourceErrorInfoShowMode Property

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.v20.2.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public ItemsSourceErrorInfoShowMode ItemsSourceErrorInfoShowMode { get; set; }

Property Value

Type Description
DevExpress.Xpf.Grid.ItemsSourceErrorInfoShowMode

A DevExpress.Xpf.Grid.ItemsSourceErrorInfoShowMode enumeration value that specifies data error types to be visualized.

Remarks

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.

itemssourceerrorinfoshowmode

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