Share via


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

'Declaration
Public ReadOnly Property Parameters As ReportParameterCollection
'Usage
Dim instance As ReportParametersEventArgs
Dim value As ReportParameterCollection

value = instance.Parameters
public ReportParameterCollection Parameters { get; }
public:
property ReportParameterCollection^ Parameters {
    ReportParameterCollection^ get ();
}
/** @property */
public ReportParameterCollection get_Parameters ()
public function get Parameters () : ReportParameterCollection

Property Value

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

Reference

ReportParametersEventArgs Class
ReportParametersEventArgs Members
Microsoft.Reporting.WinForms Namespace