DxReportParametersPanel.ReportName Property
Gets or sets the unique report name.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v25.2.JSBasedControls.dll
NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls
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
<DxReportParametersPanel ReportName="TestReport" Height="1000px" Width="650px">
<DxReportParametersPanelRequestOptions HandlerUri="DXXRDV"/>
<DxReportParametersPanelCallbacks BeforeRender="ReportingPanel.beforeRender"/>
</DxReportParametersPanel>
See Also