将所有工作表列调整到单个PDF页面

使工作表列适合单个PDF页面

PdfSaveOptions.setAllColumnsInOnePagePerSheet可以确保将工作表的所有列呈现为单个PDF页面,尽管行可能因工作表中的数据而扩展到几个页面。

下面的示例代码显示了如何使用PdfSaveOptions.setAllColumnsInOnePagePerSheet属性来呈现包含100列的大工作表。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(FitAllWorksheetColumns.class);
// Create and initialize an instance of Workbook
Workbook book = new Workbook(dataDir + "TestBook.xlsx");
// Create and initialize an instance of PdfSaveOptions
PdfSaveOptions saveOptions = new PdfSaveOptions(SaveFormat.PDF);
// Set AllColumnsInOnePagePerSheet to true
saveOptions.setAllColumnsInOnePagePerSheet(true);
// Save Workbook to PDF fromart by passing the object of PdfSaveOptions
book.save(dataDir + "output.pdf", saveOptions);