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

ASPxReportDesigner.SettingsWizard Property

Provides access to the Report Wizard settings.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v18.2.Web.WebForms.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:

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