Skip to main content

UserDesignerOptions Class

Provides access to customization settings of End-User Report Designers.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public class UserDesignerOptions

Remarks

Apply settings from this class at application startup:

WinForms
static class Program {
    static void Main() {
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.DataBindingMode = 
            DevExpress.XtraReports.UI.DataBindingMode.ExpressionsAdvanced;
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.ShowDimensionNotations = false;
        // ...
    }
}
WPF
public partial class App : Application {
    protected override void OnStartup(StartupEventArgs e) {
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.DataBindingMode =
            DevExpress.XtraReports.UI.DataBindingMode.ExpressionsAdvanced;            
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.ShowDimensionNotations = false;
        base.OnStartup(e);
    }
}
ASP.NET
public class Global : System.Web.HttpApplication {
    protected void Application_Start(Object sender, EventArgs e) {
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.DataBindingMode =
            DevExpress.XtraReports.UI.DataBindingMode.ExpressionsAdvanced;
        DevExpress.XtraReports.Configuration.Settings.Default.UserDesignerOptions.ShowDimensionNotations = false;
        //... 
    }
}

Inheritance

Object
UserDesignerOptions
See Also