windowsforms-devexpress-dot-dataaccess-dot-ui-dot-wizard-a58b51f1.md
Contains settings used to customize the Data Source wizard and Query Builder.
Namespace : DevExpress.DataAccess.UI.Wizard
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
public class JsonWizardSettings
Public Class JsonWizardSettings
The following members return JsonWizardSettings objects:
You can access the JsonWizardSettings object and its settings in one of the following ways:
When you drop the RibbonReportDesigner component (or the StandardReportDesigner component) onto a form, it creates an End-User Report Designer with a ribbon or standard UI.
Use the XRDesignMdiController‘s Properties window to specify Json wizard settings:
The following code snippet specifies JSON wizard settings when you invoke the End-User Report Designer using the ReportDesignTool class methods:
using DevExpress.XtraReports.UI;
// ...
ReportDesignTool designer = new ReportDesignTool(new XtraReport());
designer.DesignRibbonForm.DesignMdiController.DataSourceWizardSettings.
JsonWizardSettings.SchemaDiscoveryMaxItemCount = 200;
designer.ShowRibbonDesigner();
Imports DevExpress.XtraReports.UI
' ...
Private designer As New ReportDesignTool(New XtraReport())
designer.DesignRibbonForm.DesignMdiController.DataSourceWizardSettings.JsonWizardSettings.SchemaDiscoveryMaxItemCount = 200
designer.ShowRibbonDesigner()
Object JsonWizardSettings
See Also