使用Apache POI和Aspose.Cells的缩放因子
Contents
[
Hide
]
Aspose.Cells - 缩放因子
Microsoft Excel提供了一个功能,让用户设置工作表的缩放比例。此功能帮助用户以较小或较大的视图查看工作表内容。
Aspose.Cells提供了一个代表Microsoft Excel文件的类Workbook。Workbook类包含一个WorksheetCollection,允许访问Excel文件中的每个工作表。
工作表由Worksheet类表示。Worksheet类提供了广泛的属性和方法来管理工作表。要设置工作表的缩放比例,使用Worksheet类的setZoom方法。
Java
Worksheet worksheet = worksheets.get(0);
//Setting the zoom factor of the worksheet to 75
worksheet.setZoom(75);
Apache POI SS - HSSF XSSF - 缩放因子
Apache POI提供了Sheet.setZoom()方法来提供缩放功能。
Java
Sheet sheet1 = wb.createSheet("new sheet");
sheet1.setZoom(3,4); // 75 percent magnification