Método ReportParameterCollection.Add (String, String)
Creates and adds a ReportParameter, with the specified name and value, to the end of the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (em Microsoft.AnalysisServices.dll)
Sintaxe
'Declaração
Public Function Add ( _
name As String, _
value As String _
) As ReportParameter
'Uso
Dim instance As ReportParameterCollection
Dim name As String
Dim value As String
Dim returnValue As ReportParameter
returnValue = instance.Add(name, value)
public ReportParameter Add(
string name,
string value
)
public:
ReportParameter^ Add(
String^ name,
String^ value
)
member Add :
name:string *
value:string -> ReportParameter
public function Add(
name : String,
value : String
) : ReportParameter
Parâmetros
- name
Tipo: System.String
The name of the ReportParameter to add.
- value
Tipo: System.String
The value of the ReportParameter to add.
Valor de retorno
Tipo: Microsoft.AnalysisServices.ReportParameter
The ReportParameter that was added to the collection.