ModifyAnnotationsAuthor

PdfAnnotationEditor.ModifyAnnotationsAuthor method

Ändert den Autor von Anmerkungen im angegebenen Seitenbereich.

public void ModifyAnnotationsAuthor(int start, int end, string srcAuthor, string desAuthor)
ParameterTypBeschreibung
startInt32Die Startseitennummer.
endInt32Die letzte Seitenzahl.
srcAuthorStringDer Autor, der geändert werden muss.
desAuthorStringDer neue Autor.

Beispiele

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ModifyAnnotationsAuthor(1, 2, "PREV AUTHOR", "NEW AUTHOR");
editor.Save("example_out.pdf");

Siehe auch