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

ASPxReportDesigner.SettingsWizard Property

Provides access to the Report Wizard settings.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v19.1.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

Declaration

public ReportDesignerWizardSettings SettingsWizard { get; }

Property Value

Type Description
ReportDesignerWizardSettings

A ReportDesignerWizardSettings object that provides Report Wizard settings.

Remarks

The default Report Designer implementation uses the Data Source Wizard (Fullscreen) version.

The following code snippet demonstrates how to enable the Report Wizard (Popup) version.

protected void Page_Load(object sender, EventArgs e) {
    ASPxReportDesigner1.SettingsWizard.UseFullscreenWizard = false;
    //...
}
See Also