Skip to main content
All docs
V24.2

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

DesignAnalyzerOptions.ShowErrors Property

Specifies whether the Report Design Analyzer shows messages of the “Error” type.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public bool ShowErrors { get; set; }

#Property Value

Type Default Description
Boolean True

true to show messages of the “Error” type; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ShowErrors
ReportingSettings
.DesignAnalyzerOptions .ShowErrors
Settings
.DesignAnalyzerOptions .ShowErrors

#Remarks

The Report Design Analyzer shows errors, warnings, and information messages that help you and your end users to detect and fix issues in a report.

The Report Design Analyzer (WinForms)

Set the ShowErrors property to false to disable messages of the “Error” type.

using DevExpress.XtraReports.Configuration;
//...

Settings.Default.DesignAnalyzerOptions.ShowErrors = false;

ShowErrors = false

If you disable messages of the “Error” type, the corresponding tab in the UI becomes disabled as well. Note that you can click this tab to enable the messages again.

You can also disable messages of the “Warning” and “Information” types. For this, set the ShowWarnings and ShowMessages properties to false.

See Also