Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ListEditor.ErrorMessages Property

Provides access to the current ListEditor‘s error message collection, populated when Validation Rules are broken.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public ErrorMessages ErrorMessages { get; }

#Property Value

Type Description
DevExpress.ExpressApp.Utils.ErrorMessages

An ErrorMessages object which is used to access the messages about currently broken Validation Rules.

#Remarks

Validation Rules can be applied to a business class. When these Rules are broken, the ErrorMessages collection of the List Editor that represents this class’ object(s) is populated with the error messages.

Generally, you do not need to use this property. Although, you may use it in a custom feature for the Validation System.

See Also