Skip to main content

WizardSettings Class

Contains the Report Wizard settings.

Namespace: DevExpress.XtraReports.Web.ReportDesigner.DataContracts

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

[DataContract]
public class WizardSettings :
    SerializableSettingsBase

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:

EnableFederationDataSource

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