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

VGridControlBase.HasRowErrors Property

Indicates whether the focused record or at least a single cell within the focused record has an error assigned.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

[Browsable(false)]
public virtual bool HasRowErrors { get; }

Property Value

Type Description
Boolean

true if the focused record contains errors set via the VGridControlBase.SetRowError method; otherwise, false.

Remarks

The HasRowErrors property returns true if an error has been assigned to the focused record via the VGridControlBase.SetRowError method. If an error has been assigned on the data source level, the HasRowErrors property returns false.

The error which is assigned to a particular cell within the focused record can be obtained using the VGridControlBase.GetRowError method.

See Also