Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
This example shows how to append documents using Aspose.Cells for Java with Jython. Here you can see the sample code.
Jython Code
```python
from aspose-cells import Settings
from com.aspose.cells import Workbook
class PageBreakPreview:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/PageBreakPreview/'
workbook = Workbook(dataDir + "Book1.xls")
# Adding a new worksheet to the Workbook object
worksheets = workbook.getWorksheets()
worksheet = worksheets.get(0)
# Displaying the worksheet in page‑break preview
worksheet.setPageBreakPreview(True)
# Saving the modified Excel file in the default format
workbook.save(dataDir + "output.xls")
# Print message
print "Page break preview is enabled for sheet 1, please check the output document."
if __name__ == '__main__':
PageBreakPreview()
``` Download Append Documents (Aspose.Cells) from any of the below‑mentioned social‑coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.