Initializes a new instance of the
ReportParameter class.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByVal As Boolean _
)
'Usage
Dim name As String
Dim description As String
Dim value As String
Dim isUserParam As Boolean
Dim instance As New ReportParameter(name, description, value, isUserParam)
public ReportParameter(
string ,
string ,
string ,
bool
)
public ReportParameter(
: String;
: String;
: String;
: Boolean
);
public function ReportParameter(
: String,
: String,
: String,
: boolean
);
public: ReportParameter(
string* ,
string* ,
string* ,
bool
)
public:
ReportParameter(
String^ ,
String^ ,
String^ ,
bool
)
Parameters
- name
- The name.
- description
- The description.
- value
- The value.
- isUserParam
- if set to
true
[is user param].
See Also