Sage 100 Reporting Object

SOLVED

I use this reporting object frequently to print custom reports from button scripts in Sage.   Below is an example of the object being used.

Set report = CreateObject("Sage100ERP.Reporting.Report")

report.Load("C:\MYREPORT_custom.RPT")
report.PrinterName = "My Printer"
report.PrintToPrinter 1, 0, 0, 0, 0

Does anyone know if there is a method available that will let you know export the report (to PDF or otherwise)?  I've used actual reporting objects in Sage (i.e. SO Printing) to export using methods like the below, but I believe these are completely different objects that the reporting object.  Any help would be greatly appreciated!

soPrint.nReportType = 6

if not cbool(soPrint.nInitReportEngine()) then
MSGBOX("Init report engine: " + soPrint.sLastErrorMsg)
end if

if not cbool(soPrint.nSetExportOptions(5, file1)) then
MSGBOX("Set export options: " + soPrint.sLastErrorMsg)
end if


if not cbool(soPrint.nProcessReport("EXPORT")) then
MSGBOX CSTR("Process report: " + soPrint.sLastErrorMsg)
end if