Click or drag to resize

PdfArrayWrapperTRemove Method

Removes the first occurrence of a specific item from the collection.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public bool 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
ExceptionCondition
ArgumentNullExceptionitem is null.
NotSupportedExceptionCollection is read-only.
See Also