DxWasmReportParametersPanel.ReportName Property
Gets or sets the unique report name.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v25.2.JSBasedControls.WebAssembly.dll
NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.WebAssembly
Declaration
Property Value
| Type | Description |
|---|---|
| String | The report name. |
Remarks
Use the ReportName property to specify the report. The Parameter control retrieves information on report parameters from the specified report:
@using DevExpress.Blazor.Reporting
<DxWasmReportParametersPanel ReportName="TestReport" Height="1000px" Width="650px">
<DxWasmReportParametersPanelRequestOptions HandlerUri="DXXRDV"/>
<DxWasmReportParametersPanelCallbacks BeforeRender="ReportingPanel.beforeRender"/>
</DxWasmReportParametersPanel>
See Also