Skip to main content
All docs
V23.2

DesignAnalyzerOptions.EnableReportExportErrorSource Property

Specifies whether the Report Design Analyzer shows errors, warnings, and information messages related to report export.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public bool EnableReportExportErrorSource { get; set; }

Property Value

Type Default Description
Boolean True

true to show messages related to report export; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

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)

Based on their source, report errors are divided into four groups:

  • Report layout errors – occur, for example, when report controls overlap each other or extend beyond the report’s printable area.
  • Report creation errors – occur while the report document is created. For instance, it might include notifications about invalid property values or unreachable sources of content.
  • Report export errors – happen while the report document is exported to PDF, XLSX, and other formats.
  • Report script errors – for example, errors in script syntax.

The Report Design Analyzer's default error set

You can set the EnableReportExportErrorSource property to false to disable errors related to report export. Specify the value of this property in a method called at application startup.

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

Settings.Default.DesignAnalyzerOptions.EnableReportExportErrorSource = false;

EnableReportExportErrorSource = false

You can also disable messages related to the report layout, creation, and scripts. Refer to the following property descriptions for details:

See Also