ReportParameter Constructor (String, String, Boolean)
Instantiates a new ReportParameter with a name, a value, and a visibility flag.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public ReportParameter(
string name,
string value,
bool visible
)
public:
ReportParameter(
String^ name,
String^ value,
bool visible
)
new :
name:string *
value:string *
visible:bool -> ReportParameter
Public Sub New (
name As String,
value As String,
visible As Boolean
)
Parameters
name
Type: System.StringThe name of the parameter.
value
Type: System.StringThe value of the parameter.
visible
Type: System.BooleanDetermines if the parameter is displayed in the user interface.
See Also
ReportParameter Overload
ReportParameter Class
Microsoft.Reporting.WinForms Namespace
Return to top