xtrareports-devexpress-dot-blazor-dot-reporting-03fd8ddb.md
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
public class DxReportDesignerReportPreviewSettings :
SettingsComponent<ReportPreviewSettingsModel>
Public Class DxReportDesignerReportPreviewSettings
Inherits SettingsComponent(Of ReportPreviewSettingsModel)
The following code snippet sets the UseSameTab property to false:
@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>
@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>
Object ComponentBase DevExpress.Blazor.Reporting.Base.SettingsComponent<DevExpress.Blazor.Reporting.ReportPreviewSettingsModel> DxReportDesignerReportPreviewSettings
See Also