Skip to main content
All docs
V23.2

DesignAnalyzerOptions.ShowErrors Property

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

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v23.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