Skip to main content

XtraReport.RequestParameters Property

Specifies whether the report document creation should start only after the user submits all the report parameter values.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[DefaultValue(true)]
[PropertyGridTab(ReportStringId.UD_PropertyGrid_TabBehavior)]
[SRCategory(ReportStringId.CatParameters)]
public bool RequestParameters { get; set; }

Property Value

Type Default Description
Boolean true

true to create a document after the user submits report parameters; otherwise, false.

Remarks

If users should specify parameter values in your report, set the RequestParameters property to true.

When the RequestParameters property is true, the document is only created after the user submits values for all visible parameters in the Parameters panel.

If there are no visible parameters (the Parameter.Visible property is false for all parameters), the Parameters panel is not displayed and the RequestParameters property is not in effect.

Note

You can use the AutoShowParametersPanel property of the ReportPrintTool and the DocumentPreviewControl components to show/hide the Parameters panel.

For more information, review the following help topic: Use Report Parameters.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RequestParameters property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also