WizardSettings Class
In This Article
Contains the Report Wizard settings.
Namespace: DevExpress.XtraReports.Web.ReportDesigner.DataContracts
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
#Related API Members
The following members return WizardSettings objects:
#Remarks
The WizardSettings
class contains settings that you can use to configure the Report Wizard.
#Example - Hide the Data Federation Item
The following image shows how the EnableFederationDataSource
option affects the Select data source type wizard page:
The following code disables the EnableFederationDataSource
option:
var designerRender = Html.DevExpress().ReportDesigner("reportDesigner")
.Height("100%")
.WizardSettings(s => s.EnableFederationDataSource = false)
.Bind("TestReport");
@designerRender.RenderHtml()
See Also