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

DataViewBase.HasErrors Property

Gets whether there is any error in a grid’s view. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

Declaration

public bool HasErrors { get; }

Property Value

Type Description
Boolean

true if there is any error; otherwise, false.

Remarks

Use the HasErrors property to get whether the view has any validation errors. The HasErrors property works only if the DataViewBase.ErrorsWatchMode property is set to All, Cell, or Row.

Note

Setting the DataViewBase.ErrorsWatchMode property to All, Cell, or Row can significantly decrease the control performance. Refer to the DataViewBase.ErrorsWatchMode property description to learn more.

See Also