Skip to main content

ReportDesignerSettings.SettingsWizard Property

Provides access to the Report Wizard settings.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v24.2.dll

NuGet Package: DevExpress.Web.Mvc5

#Declaration

public ReportDesignerWizardSettings SettingsWizard { get; }

#Property Value

Type Description
ReportDesignerWizardSettings

A ReportDesignerWizardSettings object that contains 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.

@Html.DevExpress().ReportDesigner(settings => {
    settings.Name = "ReportDesigner";
    settings.SettingsWizard.UseFullscreenWizard = false;
}).Bind(Model).GetHtml()
See Also