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