DeleteStampByIds

DeleteStampByIds(int[])

حذف الأختام ذات المعرفات المحددة من كافة صفحات المستند.

public void DeleteStampByIds(int[] stampIds)
معامليكتبوصف
stampIdsInt32[]صفيف من معرفات الطوابع.

أمثلة

PdfContentEditor contentEditor = new PdfContentEditor();
contentEditor.BindPdf("file.pdf");
contentEditor.DeleteStampByIds(new int[] { 102, 103 } );
contentEditor.Save("outfile.pdf");

أنظر أيضا


DeleteStampByIds(int, int[])

حذف الطوابع على الصفحة المحددة بواسطة معرفات طوابع متعددة.

public void DeleteStampByIds(int pageNumber, int[] stampIds)
معامليكتبوصف
pageNumberInt32رقم الصفحة حيث سيتم حذف الطوابع.
stampIdsInt32[]صفيف من معرفات الطوابع.

أمثلة

PdfContentEditor contentEditor = new PdfContentEditor();
contentEditor.BindPdf("file.pdf");
contentEditor.DeleteStampByIds(1, new int[] { 100, 101 } );
contentEditor.Save("outfile.pdf");

أنظر أيضا