ReportParameterCollection.Add Método (String, String)
Creates and adds a ReportParameter, with the specified name and value, to the end of the collection.
Espacio de nombres: Microsoft.AnalysisServices
Ensamblado: Microsoft.AnalysisServices (en Microsoft.AnalysisServices.dll)
Sintaxis
'Declaración
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 devuelto
Tipo: Microsoft.AnalysisServices.ReportParameter
The ReportParameter that was added to the collection.