ReportDesignerBuilder.WizardSettings(Action<WizardSettings>) Method
In This Article
Provides access to the Report Designer‘s wizard settings.
Namespace: DevExpress.AspNetCore.Reporting.ReportDesigner
Assembly: DevExpress.AspNetCore.Reporting.v24.2.dll
NuGet Package: DevExpress.AspNetCore.Reporting
#Declaration
public ReportDesignerBuilder WizardSettings(
Action<WizardSettings> configure
)
#Parameters
Name | Type | Description |
---|---|---|
configure | Action<Wizard |
A Action |
#Returns
Type | Description |
---|---|
Report |
A Report |
#Remarks
In the delegate method, use the settings that the WizardSettings object exposes.
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.
@{
var reportDesigner = Html.DevExpress().ReportDesigner("reportDesigner1")
.Height("1000px")
.Bind("Report")
.WizardSettings(settings => { settings.UseFullscreenWizard = false; });
}
@reportDesigner
See Also