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