DeleteStampByIds

DeleteStampByIds(int[])

Elimina sellos con ID específicos de todas las páginas del documento.

public void DeleteStampByIds(int[] stampIds)
ParámetroEscribeDescripción
stampIdsInt32[]Matriz de identificaciones de sellos.

Ejemplos

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

Ver también


DeleteStampByIds(int, int[])

Elimina sellos en la página especificada por múltiples ID de sello.

public void DeleteStampByIds(int pageNumber, int[] stampIds)
ParámetroEscribeDescripción
pageNumberInt32Número de página donde se eliminarán los sellos.
stampIdsInt32[]Matriz de identificaciones de sellos.

Ejemplos

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

Ver también