package com.aspose.cells.examples.featurescomparison.worksheets.zoomfactor; import com.aspose.cells.Workbook; import com.aspose.cells.Worksheet; import com.aspose.cells.WorksheetCollection; import com.aspose.cells.examples.Utils; public class AsposeZoom { public static void main(String[] args) throws Exception { // The path to the documents directory. String dataDir = Utils.getDataDir(AsposeZoom.class); //Instantiating a Excel object by excel file path Workbook workbook = new Workbook(); //Accessing the first worksheet in the Excel file WorksheetCollection worksheets = workbook.getWorksheets(); Worksheet worksheet = worksheets.get(0); //Setting the zoom factor of the worksheet to 75 worksheet.setZoom(75); //Saving the modified Excel file in default format workbook.save(dataDir + "AsposeZoom_Out.xls"); System.out.println("Aspose Zoom Created."); } }