Skip to main content
A newer version of this page is available. .

DesignSettings Class

Provides additional settings to the End-User Report Designer for WinForms.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v18.2.Extensions.dll

Declaration

public class DesignSettings

The following members return DesignSettings objects:

Example

This example illustrates how to make a reporting application for WinForms invoke the Chart Wizard each time a new Use Charts in Reports is added to a report.

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

static void Main() {
    DesignSettings.Default.ChartOptions.ShowWizard = true;
    //...
}

Inheritance

Object
DesignSettings
See Also