XtraReport.RequestParameters Property
Specifies whether the report document creation should start after all the report parameters are submitted.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v18.2.dll
Declaration
[SRCategory(ReportStringId.CatParameters)]
[PropertyGridTab(ReportStringId.UD_PropertyGrid_TabBehavior)]
[DefaultValue(true)]
public bool RequestParameters { get; set; }
<SRCategory(ReportStringId.CatParameters)>
<PropertyGridTab(ReportStringId.UD_PropertyGrid_TabBehavior)>
<DefaultValue(True)>
Public Property RequestParameters As Boolean
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
true, to start to report document creation after submitting its parameters; otherwise, false. |
Remarks
To pass a parameter's value to a report by requesting this value from an end-user, enable the RequestParameters property.
When the RequestParameters property is set to true, the XtraReport.CreateDocument method is not called unless all parameter values are submitted via the Parameters user interface.
And when there are no visible parameters available, this user interface is not shown until the ReportPrintTool.AutoShowParametersPanel property is enabled.
To learn more, see Using Report Parameters.