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

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.v19.1.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
Reporting ASPxReportDesigner
.SettingsWizard .UseMasterDetailWizard
ASP.NET Web Forms Controls ReportDesignerSettings
.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