PdfCollection(T).Contains Method

Determines whether the collection contains a specific value.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool Contains(
	T item
)
VB
Public Function Contains ( 
	item As T
) As Boolean

Parameters

item
Type: T
The object to locate in the collection.

Return Value

Type: Boolean
true if item is found in the collection; otherwise, false.

Implements

ICollection<T>.Contains(T)

See Also