 | PdfPageObjectsCollectionRemove Method |
Removes the first occurrence of a specific
PdfPageObject from the collection.
Namespace:
Patagames.Pdf.Net
Assembly:
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.40.2704
Syntaxpublic bool Remove(
PdfPageObject item
)
Public Function Remove (
item As PdfPageObject
) As Boolean
public:
virtual bool Remove(
PdfPageObject^ item
) sealed
abstract Remove :
item : PdfPageObject -> bool
override Remove :
item : PdfPageObject -> bool
public final boolean Remove(
PdfPageObject item
)
Parameters
- item
- Type: Patagames.Pdf.NetPdfPageObject
The PdfPageObject to remove from the collection.
Return Value
Type:
Boolean
true if
PdfPageObject was successfully removed from the collection;
otherwise, false. This method also returns false if
PdfPageObject is not found in the
original collection.
Implements
ICollectionTRemove(T)
See Also