Initializes a new instance of the
ReportParameter class.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As String, _
ByVal As String _
)
'Usage
Dim name As String
Dim description As String
Dim value As String
Dim instance As New ReportParameter(name, description, value)
public ReportParameter(
string ,
string ,
string
)
public ReportParameter(
: String;
: String;
: String
);
public function ReportParameter(
: String,
: String,
: String
);
public: ReportParameter(
string* ,
string* ,
string*
)
public:
ReportParameter(
String^ ,
String^ ,
String^
)
Parameters
- name
- The name.
- description
- The description.
- value
- The value.
See Also