Sha256: 775cd4d44d63de35b54cd00e49b93be4ba1d44f5c6823db344d7ea2edf0ca6ed
Contents?: true
Size: 786 Bytes
Versions: 3
Compression:
Stored size: 786 Bytes
Contents
module Asposecellsjava module ZoomFactor def initialize() data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/' # Instantiating a Workbook object by excel file path workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls') # Accessing the first worksheet in the Excel file worksheets = workbook.getWorksheets() worksheet = worksheets.get(0) # Setting the zoom factor of the worksheet to 75 worksheet.setZoom(75) # Saving the modified Excel file in default (that is Excel 2003) format workbook.save(data_dir + "output.xls") puts "Set zoom factor, please check the output file." end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
asposecellsjava-0.0.3 | lib/asposecellsjava/zoomfactor.rb |
asposecellsjava-0.0.2 | lib/asposecellsjava/zoomfactor.rb |
asposecellsjava-0.0.1 | lib/asposecellsjava/zoomfactor.rb |