Remove items from PDF Page

I’m new to this API, can someone point to how to remove items from a page, thanks.

Hi James,

User the PdfContentElementCollection.Remove(PdfContentElement) method.

For example, let’s say you want to remove a specific PdfTextContent element, you can use this:

PdfTextContent textElement = ...
textElement.Collection.Remove(textElement);

I hope this helps.

Regards,
Mario

Thanks, i figured that out Friday.