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.v24.1.Web.WebForms.dll
NuGet Package: DevExpress.Web.Reporting
Declaration
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 |
|
.NET Reporting Tools | ASPxReportDesigner |
|
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