Skip to main content

DesignSettings.Default Property

Provides access to the default DesignSettings instance.

Namespace: DevExpress.XtraReports.Configuration

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

NuGet Package: DevExpress.Win.Reporting

Declaration

public static DesignSettings Default { get; set; }

Property Value

Type Description
DesignSettings

A DesignSettings object.

Property Paths

You can access this nested property as listed below:

Object Type Path to Default
DesignSettings
.Default .Default

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;
    //...
}
See Also