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

ReportDesignerWizardSettings Class

Provides the Report Wizard settings.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

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

Declaration

public class ReportDesignerWizardSettings :
    PropertiesBase,
    IPropertiesOwner

The following members return ReportDesignerWizardSettings objects:

Library Related API Members
Reporting ASPxReportDesigner.SettingsWizard
ASP.NET Web Forms Controls ReportDesignerSettings.SettingsWizard

Remarks

A ReportDesignerWizardSettings object is returned by the ASPxReportDesigner.SettingsWizard property and ReportDesignerSettings.SettingsWizard properties.

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;
    //...
}

Inheritance

Object
StateManager
PropertiesBase
ReportDesignerWizardSettings
See Also