Know when Report.PrintPrepared() is finished - in background printing
I'm particularly looking at
fastReport.OnFinishReport(doneDidIt)
or
fastReport.FinishReportEvent
In reference to our call to print (silently, in a background process/console app):
await Task.Run(() => fastReport.PrintPrepared(settings)); // Work-around for FastReport not being async-await-able
Any thoughts on how I may know the report has finished in this type of context?