windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsbehavior-1d06f091.md
Gets or sets whether validation errors (icon and description) are allowed to be displayed when a cell or entire row is not valid.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
public bool AllowValidationErrors { get; set; }
<DefaultValue(True)>
Public Property AllowValidationErrors As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if validation errors are displayed; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowValidationErrors |
|---|---|
| GridView |
.OptionsBehavior .AllowValidationErrors
|
When a particular row loses focus, the ColumnView.ValidateRow event fires, allowing you to validate the row. In the event handler, you can call the ColumnView.SetColumnError method to specify a validation error (icon and description) for the row being validated, or for a particular cell in the row. By default, these errors are displayed if the validation fails (the Valid event argument is set to false ). Set the AllowValidationErrors property to false to suppress displaying validation errors. Note that the AllowValidationErrors property only affects the error display, but not the validation itself.
See Also