Skip to main content
All docs
V25.2
  • DesignAnalyzerOptions.EnableAccessibilityValidation Property

    Specifies whether accessibility validation results are displayed in the Report Design Analyzer.

    Namespace: DevExpress.XtraReports.Configuration

    Assembly: DevExpress.XtraReports.v25.2.dll

    NuGet Package: DevExpress.Reporting.Core

    Declaration

    public bool EnableAccessibilityValidation { get; set; }

    Property Value

    Type Description
    Boolean

    true to display accessibility-related issues in the Report Design Analyzer; otherwise, false.

    Property Paths

    You can access this nested property as listed below:

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

    Remarks

    Set the EnableAccessibilityValidation property to true to display accessibility-related issues in the Report Design Analyzer.

    using DevExpress.XtraReports.Configuration;
    //...
    
    Settings.Default.DesignAnalyzerOptions.EnableAccessibilityValidation = true;
    

    design-analyzer-accessibility-issues-enabled

    Use filters by type and source to navigate long issue lists:

    • Like other report design issues, accessibility issues are divided into errors, warnings, and messages. If you deselect the Warnings button, all accessibility warnings will be hidden.
    • The source filter allows you to select report controls where issues originate.
    See Also