Package excel.zoom

Source Code of excel.zoom.AsposeZoom

package excel.zoom;

import com.aspose.cells.Workbook;
import com.aspose.cells.Worksheet;
import com.aspose.cells.WorksheetCollection;

public class AsposeZoom
{
  public static void main(String[] args) throws Exception
  {
    //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("data/AsposeZoom.xls");
   
    System.out.println("Aspose Zoom Created.");
  }
}
TOP

Related Classes of excel.zoom.AsposeZoom

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.