[This is preliminary documentation and is subject to change.]
            Gets the report parameters from the report xml file
            
    Namespace: 
   OfficeClip.DBLayer.FrameworkAssembly: OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0
Syntax
| C# | 
|---|
public void GetReportParameters( string specsFile, int reportId, ref string path, ref string name, ref string sqlStr, ref string datasetName, ref string[] cols )  | 
| Visual Basic (Declaration) | 
|---|
Public Sub GetReportParameters ( _ specsFile As String, _ reportId As Integer, _ ByRef path As String, _ ByRef name As String, _ ByRef sqlStr As String, _ ByRef datasetName As String, _ ByRef cols As String() _ )  | 
| Visual C++ | 
|---|
public: void GetReportParameters( String^ specsFile, int reportId, String^% path, String^% name, String^% sqlStr, String^% datasetName, array<String^>^% cols )  | 
Parameters
- specsFile
 - Type: System..::.String
The xml file where the report is specified 
- reportId
 - Type: System..::.Int32
The unique id of the report 
- path
 - Type: System..::.String%
The path of the report 
- name
 - Type: System..::.String%
The name of the report 
- sqlStr
 - Type: System..::.String%
The sql for the report 
- datasetName
 - Type: System..::.String%
The report dataset name 
- cols
 - Type: array<System..::.String>[]()[]%
The report columns 
