Back to Devexpress

DxReportDesignerReportPreviewSettings Class

xtrareports-devexpress-dot-blazor-dot-reporting-03fd8ddb.md

latest2.4 KB
Original Source

DxReportDesignerReportPreviewSettings Class

Allows you to specify settings for Report Designer Preview.

Namespace : DevExpress.Blazor.Reporting

Assembly : DevExpress.Blazor.Reporting.v25.2.JSBasedControls.Common.dll

NuGet Package : DevExpress.Blazor.Reporting.JSBasedControls.Common

Declaration

csharp
public class DxReportDesignerReportPreviewSettings :
    SettingsComponent<ReportPreviewSettingsModel>
vb
Public Class DxReportDesignerReportPreviewSettings
    Inherits SettingsComponent(Of ReportPreviewSettingsModel)

Remarks

The following code snippet sets the UseSameTab property to false:

razor
@using DevExpress.XtraReports.Web.WebDocumentViewer.DataContracts

<DxReportDesigner ReportName="TestReport" Height="calc(100vh - 130px)" Width="100%" AllowMDI="true">>
    <DxReportDesignerReportPreviewSettings ExportSettings="new ExportSettings { UseSameTab = false, UseAsynchronousExport = false }" />
</DxReportDesigner>
razor
@using DevExpress.XtraReports.Web.WebDocumentViewer.DataContracts

<DxWasmReportDesigner ReportName="Report" Height="100%">
    <DxWasmReportDesignerRequestOptions GetDesignerModelAction="DXXRD/GetReportDesignerModel"/>
    <DxReportDesignerModelSettings AllowMDI="true">
            <DxReportDesignerReportPreviewSettings ExportSettings="new ExportSettings { UseSameTab = false, UseAsynchronousExport = false }" />
    </DxReportDesignerModelSettings>
</DxWasmReportDesigner>

Inheritance

Object ComponentBase DevExpress.Blazor.Reporting.Base.SettingsComponent<DevExpress.Blazor.Reporting.ReportPreviewSettingsModel> DxReportDesignerReportPreviewSettings

See Also

DxReportDesignerReportPreviewSettings Members

DevExpress.Blazor.Reporting Namespace