Hi,
We are currently testing your EO.Webbrowser, and looking into controlling the print flow. During this, we try to Print to file, instead of directly to the printer. We don't need to save it as PDF (As I've have read that requires the Html -> Pdf product you offer), but is it not possible to save it as the standard *.prn file?
The code I am working on looks like the following
Code: C#
private void View_BeforePrint(object sender, EO.WebBrowser.BeforePrintEventArgs e)
{
e.PrinterSettings.PrintToFile = true;
e.PrinterSettings.PrintFileName = @"C:\temp\testPrint.prn";
e.Continue(false);
}
The file is never saved and instead, it just prints it as nothing had changed.
Am I missing something or is it just not possible for EO Webbrowser ?
Thanks for your time