PdfAnnotationEditor.ModifyAnnotationsAuthor

طريقة PdfAnnotationEditor.ModifyAnnotationsAuthor

تعدل مؤلف التعليقات التوضيحية على نطاق الصفحات المحدد.

public void ModifyAnnotationsAuthor(int start, int end, string srcAuthor, string desAuthor)
المعاملالنوعالوصف
startInt32رقم الصفحة الابتدائية.
endInt32رقم الصفحة النهائية.
srcAuthorStringالمؤلف الذي يجب تعديله.
desAuthorStringالمؤلف الجديد.

أمثلة

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

انظر أيضًا