Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

ReportsOptions.DesignAndPreviewDisplayMode Property

Specifies whether the report viewer and designer are displayed in a popup or main window.

Namespace: DevExpress.ExpressApp.ReportsV2.Blazor

Assembly: DevExpress.ExpressApp.ReportsV2.Blazor.v23.2.dll

NuGet Package: DevExpress.ExpressApp.ReportsV2.Blazor

Declaration

[DefaultValue(DesignAndPreviewDisplayModes.DetailView)]
public DesignAndPreviewDisplayModes DesignAndPreviewDisplayMode { get; set; }

Property Value

Type Default Description
DevExpress.ExpressApp.ReportsV2.Blazor.DesignAndPreviewDisplayModes DetailView

An enumeration value that specifies how the report viewer and designer are displayed.

Remarks

The following example demonstrates how to specify this property:

File: MySolution.Blazor.Server\Startup.cs.

using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
using DevExpress.Persistent.BaseImpl;
// ...
public class Startup {
   // ...
    public void ConfigureServices(IServiceCollection services) {
        // ...
        services.AddXaf(Configuration, builder => {
            builder.UseApplication<MySolutionBlazorApplication>();
            builder.Modules
                // ...
                .AddReports(options => {
                    options.DesignAndPreviewDisplayMode = DevExpress.ExpressApp.ReportsV2.Blazor.DesignAndPreviewDisplayModes.DetailView
                })
            // ...
        });
        // ...
    }
}
See Also