The description of the redaction, containing its name and parameters. (inherited from Redaction)
Example
fromgroupdocs.redactionimportRedactorfromgroupdocs.redaction.optionsimportSaveOptionsfromgroupdocs.redaction.redactionsimportRemovePageRedaction,PageSeekOrigindefremove_last_page():# Remove 1 page counting from the end of the documentrem_opt=RemovePageRedaction(PageSeekOrigin.END,0,1)withRedactor("./test.pdf")asredactor:# Apply the redactionresult=redactor.apply(rem_opt)# Save the redacted documentso=SaveOptions()so.add_suffix=Trueredactor.save(so)