Skip to main content
All docs
V23.2

DesignAnalyzerOptions.ShowMessages Property

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

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public bool ShowMessages { get; set; }

Property Value

Type Default Description
Boolean True

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

Property Paths

You can access this nested property as listed below:

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

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 ShowMessages property to false to disable messages of the “Information” type.

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

Settings.Default.DesignAnalyzerOptions.ShowMessages = false;

ShowMessages = false

If you disable messages of the “Information” 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 “Error” and “Warning” types. For this, set the ShowErrors and ShowWarnings properties to false.

See Also