Removes the first occurrence of a specific object from the
PdfList<T>.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public bool Remove(
T item
)
VB
Public Function Remove (
item As T
) As Boolean
Parameters
- item
- Type: T
The object to remove from the PdfList<T>.
Return Value
Type:
Booleantrue if item is successfully removed; otherwise,
false.
This method also returns
false if item was not found in the
PdfList<T>.
See Also