DesignAnalyzerOptions.EnableReportCreationErrorSource Property
Specifies whether the Report Design Analyzer shows errors, warnings, and information messages related to report creation.
Namespace: DevExpress.XtraReports.Configuration
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | True | true to show messages related to report creation; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to EnableReportCreationErrorSource |
---|---|
ReportingSettings |
|
Settings |
|
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.
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.
You can set the EnableReportCreationErrorSource
property to false
to disable errors related to report creation. Specify the value of this property in a method called at application startup.
using DevExpress.XtraReports.Configuration;
//...
Settings.Default.DesignAnalyzerOptions.EnableReportCreationErrorSource = false;
You can also disable messages related to the report layout, export, and scripts. Refer to the following property descriptions for details: