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

ReportDesignerSettings.SettingsWizard Property

Provides access to the Report Wizard settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

public ReportDesignerWizardSettings SettingsWizard { get; }

Property Value

Type Description
ReportDesignerWizardSettings

A ReportDesignerWizardSettings object containing Report Wizard settings.

Remarks

The following code snippet demonstrates how to disable the master-detail functionality in the Report Wizard:


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