Remove Text from PDF - VBScript
PDF Extractor SDK sample in VBScript demonstrating ‘Remove Text from PDF’
RemoveText.vbs
' Create Bytescout.PDFExtractor.CSVExtractor object
Set remover = CreateObject("Bytescout.PDFExtractor.Remover")
remover.RegistrationName = "demo"
remover.RegistrationKey = "demo"
' Load sample PDF document
remover.LoadDocumentFromFile "sample1.pdf"
' Remove text "LOREM IPSUM" and save edited document as "result1.pdf".
' NOTE: The removed text might be larger than the search string. Currently the Remover deletes
' the whole PDF text object containing the search string.
remover.RemoveText 0, "LOREM IPSUM", True, "result.pdf"
WScript.Echo "Modified document saved as 'result.pdf' file."