ModifyAnnotationsAuthor

PdfAnnotationEditor.ModifyAnnotationsAuthor method

Belirtilen sayfa aralığındaki ek açıklamaların yazarını değiştirir.

public void ModifyAnnotationsAuthor(int start, int end, string srcAuthor, string desAuthor)
ParametreTipTanım
startInt32Başlangıç sayfa numarası.
endInt32Bitiş sayfa numarası.
srcAuthorStringDeğiştirilmesi gereken yazar.
desAuthorStringYeni yazar.

Örnekler

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

Ayrıca bakınız