Back to Devexpress

MongoDBWizardSettings Class

windowsforms-devexpress-dot-dataaccess-dot-ui-dot-wizard-40f20045.md

latest2.6 KB
Original Source

MongoDBWizardSettings Class

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

Declaration

csharp
public class MongoDBWizardSettings
vb
Public Class MongoDBWizardSettings

The following members return MongoDBWizardSettings objects:

Remarks

You can access the MongoDBWizardSettings object and its settings in one of the following ways:

Report Designer Component

When you drop the RibbonReportDesigner component (or the StandardReportDesigner component) onto a form, the End-User Report Designer with a ribbon or standard UI is created.

Use the XRDesignMdiController‘s Properties window to specify MongoDB wizard settings:

Default End-User Report Designer Form

The following code snippet specifies MongoDB wizard settings when you invoke the End-User Report Designer using the ReportDesignTool class methods:

csharp
using DevExpress.XtraReports.UI;
// ...
ReportDesignTool designer = new ReportDesignTool(new XtraReport());
designer.DesignRibbonForm.DesignMdiController.DataSourceWizardSettings.
  MongoDBWizardSettings.SchemaDiscoveryMaxItemCount = 200;
designer.ShowRibbonDesigner();
vb
Imports DevExpress.XtraReports.UI
' ...
Private designer As New ReportDesignTool(New XtraReport())
designer.DesignRibbonForm.DesignMdiController.DataSourceWizardSettings.MongoDBWizardSettings.SchemaDiscoveryMaxItemCount = 200
designer.ShowRibbonDesigner()

Inheritance

Object MongoDBWizardSettings

See Also

MongoDBWizardSettings Members

DevExpress.DataAccess.UI.Wizard Namespace