Skip to main content

ReportDesignerWizardSettings.UseMasterDetailWizard Property

Specifies whether to use a Report Wizard version that enables creating master-detail reports and specify its grouping and summary options.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

Assembly: DevExpress.XtraReports.v23.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

Declaration

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

Property Value

Type Default Description
Boolean true

true, to use the master-detail Report Wizard version; false, to use the standard Report Wizard version.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to UseMasterDetailWizard
ASP.NET MVC Extensions ReportDesignerSettings
.SettingsWizard .UseMasterDetailWizard
.NET Reporting Tools ASPxReportDesigner
.SettingsWizard .UseMasterDetailWizard

Remarks

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

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