Skip to main content
All docs
V25.1
  • .NET 8.0+

    ReportModuleOptions.EnableInplaceReports Property

    Specifies whether inplace reports are enabled.

    Namespace: DevExpress.ExpressApp.ReportsV2

    Assembly: DevExpress.ExpressApp.ReportsV2.v25.1.dll

    Declaration

    public bool EnableInplaceReports { get; set; }

    Property Value

    Type
    Boolean

    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.EnableInplaceReports = true;
                    })
                // ...
            });
            // ...
        }
    }
    
    See Also