Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To append documents using Aspose.Cells Java for Jython. Here you can see an example code.
Jython Code
from aspose-cells import Settings
from com.aspose.cells import Workbook
from com.aspose.cells import SaveFormat
class ZoomFactor:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/ZoomFactor/'
workbook = Workbook(dataDir + "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 format
workbook.save(dataDir + "output.xls")
# Print a message
print "Zoom factor set to 75% for sheet 1, please check the output document."
if __name__ == '__main__':
ZoomFactor()Download Append Documents (Aspose.Cells) from any of the mentioned below social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.