delete all redactions
Since I work one copy I like to mark my redactions and when complete I save a copy to apply the redactions and then I remove all the redactions to have a clean copy. I may not want to remove all comments, just the redaction boxes
I do this so if I remove pages I don't have to do so on multiple copies and try to keep track of where I am.
t.

-
Zachary Haber commented
You can also do this via the JavaScript API as an action or just in the console:
// ensure that all annots are synced up
this.syncAnnotScan();
// Get all the annots in the document
const annots = this.getAnnots();
if (annots) {
// If there are annots, filter out the Redact types, and destroy them
annots
.filter((annot) => annot.type === "Redact")
.forEach(function (redact) {
redact.destroy();
});
} -
Hello,
Thanks for sharing the feedback. From what I understand from your post, you would like to have an option to remove all redactions in one go from the original PDF? Please confirm.
Thanks,
-amboo