Conversion of EXCEL files with / without printing area

I’m not a developer and unfamiliar with aspose. But I have a project to enhance the conversion rate of several special file formats.

One problem we have to deal with, are EXCEL-files with defined printing area (in German it is “Druckbereich”, I hope to translate it correctly). Are there any functions in the libraries to detect if these printing areas are defined and how to deal with (convert with or without)?

Thank you for your response and any hints / information.

@dominik.jenzer,

Please note, Aspose.Cells (similar to MS Excel) renders Excel spreadsheets according to the print area(s) set for the sheet(s) in the workbook. You do not need to do anything if you want to render PDF based on those printable areas (specified). To get/set the printable area range in code, you may use PageSetup.PrintArea attribute. If it gives empty/null (string), then you may confirm that there is no printable area specified for the worksheet (so whole worksheet would be rendered into the output PDF). See document for your reference.

Hope, this helps a bit.