Modify the information of generated PDF using Aspose.Words

Hello,
Did it work? :smiley: Thank you for all the information it helps a lot of people,

@AndreaNelson Could you please elaborate your requirements a bit more. If you need to disable writing generator name into the output document, use the following code:

PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.setExportGeneratorName(false);
doc.save("out.pdf", pdfSaveOptions)

Yes,it works well