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