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 example code.
Jython Code
from aspose-cells import Settings
from com.aspose.cells import Workbook
from com.aspose.cells import ImageFormat;
from com.aspose.cells import ImageOrPrintOptions;
from com.aspose.cells import SheetRender;
from com.aspose.cells import SaveFormat;
class ConvertingToXPS:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithFiles/ConvertingToXPS/'
saveFormat = SaveFormat
workbook = Workbook(dataDir + "Book1.xls")
#Get the first worksheet.
sheet = workbook.getWorksheets().get(0)
#Apply different Image and Print options
options = ImageOrPrintOptions()
#Set the Format
options.setSaveFormat(saveFormat.XPS)
# Render the sheet with respect to specified printing options
sr = SheetRender(sheet, options)
sr.toImage(0, dataDir + "out_printingxps.xps")
#Save the complete Workbook in XPS format
workbook.save(dataDir + "out_whole_printingxps", saveFormat.XPS)
# Print message
print "Excel to XPS conversion performed successfully."
if __name__ == '__main__':
ConvertingToXPS()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.