Rendering the attached document with GroupDocs.Conversion 21.5.0 to PDF does not render all pages.
With “loadOptions.ShowHiddenSheets” set to false, only worksheet 4 is rendered. (instead of 3 and 4)
With “loadOptions.ShowHiddenSheets” set to true, only worksheet 2 and 4 are rendered. (instead of all sheets)
Classeur1.zip (6.1 KB)
var loadOptions= new SpreadsheetLoadOptions();
loadOptions.OnePagePerSheet = false;
loadOptions.SkipEmptyRowsAndColumns = false;
loadOptions.ShowHiddenSheets = true;
var options = new PdfConvertOptions();
using (var conv = new Converter(documentPath, () => loadOptions))
{
conv.Convert(@"D:\output\output.pdf", options);
}