Hi,
I want to print an Excel file to rightfax printer (it's a virtual PCL printer witch allow to fax document).
In the Excel file there are tags in native fonts. The driver of the printer use this tags to fax the document.
i want to kwnow if the text is converted to an image when the Excel file is printed because the driver don't find the information to fax the printer
Find the part of the source code to print the file :
Dim workbook As New Aspose.Cells.Workbook(_PathAttachment) 'Define a worksheet. Dim worksheet As Aspose.Cells.Worksheet = workbook.Worksheets(0) 'Apply different Image / Print options. Dim options As New Aspose.Cells.Rendering.ImageOrPrintOptions() options.PrintingPage = PrintingPageType.Default Dim sr As New SheetRender(worksheet, options)
'Print the sheet.
sr.ToPrinter(_SettingsBase.General.PrinterFax)
Best regards