We have an earlier version of Spire.pdf in our product, one of the tasks performed is redaction.
Does version 9 have the ability to remove the text from the text later of the redacted area?
Many thanks in advance,
Darren.
// Get the first page of pdf file
PdfPageBase page = doc.Pages[0];
//Create a PdfTextReplacer using the first page
PdfTextReplacer replacer = new PdfTextReplacer(page);
//Replace all texts in this page
replacer.ReplaceAllText("text","");
//Replace the first found word
replacer.ReplaceText("text", "");