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
public class DxReportDesignerReportPreviewSettings :
SettingsComponent<ReportPreviewSettingsModel>
Remarks
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>
Inheritance
Object
ComponentBase
DevExpress.Blazor.Reporting.Base.SettingsComponent<DevExpress.Blazor.Reporting.ReportPreviewSettingsModel>
DxReportDesignerReportPreviewSettings
See Also