Back to Devexpress

DesignSettings Class

xtrareports-devexpress-dot-xtrareports-dot-configuration-2d8786f4.md

latest2.0 KB
Original Source

DesignSettings Class

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

Namespace : DevExpress.XtraReports.Configuration

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

NuGet Package : DevExpress.Win.Reporting

Declaration

csharp
public class DesignSettings
vb
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.

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

static void Main() {
    DesignSettings.Default.ChartOptions.ShowWizard = true;
    //...
}
vb
Imports DevExpress.XtraReports.Configuration
' ...

Private Shared Sub Main()
    DesignSettings.Default.ChartOptions.ShowWizard = True
    '...
End Sub

Inheritance

Object DesignSettings

See Also

DesignSettings Members

XRDesignMdiControllerDesignSettings

DevExpress.XtraReports.Configuration Namespace