| Visual Basic (Declaration) | |
|---|---|
Public Sub BatchSetup( _ ByVal dataProviders As IDictionary(Of String,IReportDataSource), _ ByVal batchForEach As String, _ ByVal batchParameters As IDictionary(Of String,String) _ )  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
Dim instance As Report Dim dataProviders As IDictionary(Of String,IReportDataSource) Dim batchForEach As String Dim batchParameters As IDictionary(Of String,String) instance.BatchSetup(dataProviders, batchForEach, batchParameters)  | |
| C# | |
|---|---|
public void BatchSetup( IDictionary<string,IReportDataSource> dataProviders, string batchForEach, IDictionary<string,string> batchParameters )  | |
| Managed Extensions for C++ | |
|---|---|
public: void BatchSetup( IDictionary<string*,IReportDataSource*>* dataProviders, string* batchForEach, IDictionary<string*,string*>* batchParameters )  | |
| C++/CLI | |
|---|---|
public: void BatchSetup( IDictionary<String^,IReportDataSource^>^ dataProviders, String^ batchForEach, IDictionary<String^,String^>^ batchParameters )  | |
Parameters
- dataProviders
 - All of the datasources to process. key = the name of the datasource, value = the datasource.
 - batchForEach
 - The text of a forEach tag that is the batch query. The datasource for this tag must be in the dataProviders.
 - batchParameters
 - Parameters that may have ${var} parameters in the value part of the entry. This is returned in each iteration with the ${var} values substituted with the string value of that var.The key value is ignored by the engine.
 
Requirements
Platforms: Windows 10, Windows NT, Windows Server