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

ReportDesignerWizardSettings.UseFullscreenWizard Property

Specifies whether to use the Report Wizard version that runs in the fullscreen mode.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

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

NuGet Package: DevExpress.Web.Reporting

Declaration

[DefaultValue(true)]
public bool UseFullscreenWizard { get; set; }

Property Value

Type Default Description
Boolean **true**

true, to use the Report Wizard (Fullscreen) version; false, to use the Report Wizard (Popup) version.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to UseFullscreenWizard
Reporting ASPxReportDesigner
.SettingsWizard .UseFullscreenWizard
ASP.NET Web Forms Controls ReportDesignerSettings
.SettingsWizard .UseFullscreenWizard

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.

  • ASP.NET WebForms

    protected void Page_Load(object sender, EventArgs e) {
        ASPxReportDesigner1.SettingsWizard.UseFullscreenWizard = false;
        //...
    }
    
  • ASP.NET MVC

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