I'm creating a pdf file using aspose cells. When the pdf file created, there is a text which is Evaluation Only. Created with Aspose.Cells for Java.Copyright 2003 - 2016 Aspose Pty Ltd.
. I want to remove it but I don't know how to do it.
How can I do this?
My codes is here
Workbook workbook=new Workbook("C:\\Users\\ftk1187\\Desktop\\DICA.xls");
Worksheet worksheet = workbook.getWorksheets().get(0);
worksheet.getPageSetup().setPaperSize(PaperSizeType.PAPER_A_4_EXTRA);
worksheet.getPageSetup().setOrientation(PageOrientationType.PORTRAIT);
worksheet.getPageSetup().setZoom(75);
worksheet.setTransitionEvaluation(false);
OutputStream out=new FileOutputStream("C:\\Users\\ftk1187\\Desktop\\DICA.pdf");
workbook.save(out, SaveFormat.PDF);