GenerateReportSettings (Report) {String}
Report - {rcReportType} | The report to create settings for.
Use the RadiusCore Report Settings userform to return an XML string containing user-selected report settings. This string can then be used with the CreateReport method to create a RadiusCore report via the CLI.
Generated string format was changed from Json to Xml in RadiusCore v1.11.0.
This method should be used during custom application development only.
Public Sub radius_Sample()
' Print report setting string to immediate window so the generated string can be copied for use at a later date.
Debug.Print RadiusCore.GenerateReportSettings(xroRepTrialBalanceMulti)
End Sub