The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF file will be overwritten.
The following example demonstrates usage of Save() method with default options.
finalRedactorredactor=newRedactor("sample.docx");try{// Here we can use document instance to perform redactions
redactor.apply(newExactPhraseRedaction("John Doe",newReplacementOptions("[personal]")));// Save the document with default options (convert pages into images, save as PDF)
redactor.save();}finally{redactor.close();}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.