实现工作表的自定义纸张大小以进行渲染
Contents
[
Hide
]
可能的使用场景
在 MS Excel 中没有直接选项可用于创建自定义纸张尺寸,但是,您可以在将 Excel 文件呈现为 PDF 文件格式时设置所需工作表的自定义纸张尺寸。本文档说明如何使用 Aspose.Cells API 设置工作表的自定义纸张尺寸。
实现工作表的自定义纸张大小以进行渲染
Aspose.Cells 允许您通过使用[自定义纸张大小](https://reference.aspose.com/cells/java/com.aspose.cells/pagesetup#customPaperSize(double,%20double) 的方法页面设置.以下示例代码说明了如何为工作簿中的第一个工作表指定自定义纸张大小。另请参阅输出 PDF使用以下代码生成以供参考。
截屏
示例代码
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
//Create workbook object | |
Workbook wb = new Workbook(); | |
//Access first worksheet | |
Worksheet ws = wb.getWorksheets().get(0); | |
//Set custom paper size in unit of inches | |
ws.getPageSetup().customPaperSize(6, 4); | |
//Access cell B4 | |
Cell b4 = ws.getCells().get("B4"); | |
//Add the message in cell B4 | |
b4.putValue("Pdf Page Dimensions: 6.00 x 4.00 in"); | |
//Save the workbook in pdf format | |
wb.save(outDir + "outputCustomPaperSize.pdf"); |