WizardSettings Class
Contains the Report Wizard settings.
Namespace: DevExpress.XtraReports.Web.ReportDesigner.DataContracts
Assembly: DevExpress.Data.v24.1.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()
Inheritance
Object
DevExpress.Utils.SerializableSettingsBase
WizardSettings
See Also