ASPxReportDesigner.SettingsWizard Property
Provides access to the Report Wizard settings.
Namespace: DevExpress.XtraReports.Web
Assembly: DevExpress.XtraReports.v24.1.Web.WebForms.dll
NuGet Package: DevExpress.Web.Reporting
Declaration
Property Value
Type | Description |
---|---|
ReportDesignerWizardSettings | A ReportDesignerWizardSettings object that provides Report Wizard settings. |
Remarks
The default Report Designer implementation uses the Data Source Wizard (Fullscreen) version.
The following code snippet demonstrates how to enable the Report Wizard (Popup) version.
protected void Page_Load(object sender, EventArgs e) {
ASPxReportDesigner1.SettingsWizard.UseFullscreenWizard = false;
//...
}
See Also