ReportParametersEventArgs.Parameters Property
Gets the parameters from the parameter prompt area that are being submitted to the report server.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public ReportParameterCollection Parameters { get; }
public:
property ReportParameterCollection^ Parameters {
ReportParameterCollection^ get();
}
member Parameters : ReportParameterCollection with get
Public ReadOnly Property Parameters As ReportParameterCollection
Property Value
Type: Microsoft.Reporting.WinForms.ReportParameterCollection
A ReportParameterCollection object containing the parameter values submitted by the user.
Remarks
This collection property includes all visible report parameter values and not just the values that have changed. However, when parameters are being automatically submitted to update the dependent parameters without processing the report, the dependent parameters are not included.
Although it is read-only, you can modify the contents of the collection in the ReportParametersEventHandler method before they are submitted to the report server.
See Also
ReportParametersEventArgs Class
Microsoft.Reporting.WinForms Namespace
Return to top