Determines whether field is contained within the collection.

Namespace: Spire.Pdf.Fields
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public bool Contains(
	PdfField field
)
Public Function Contains ( 
	field As PdfField
) As Boolean
public:
bool Contains(
	PdfField^ field
)
member Contains : 
        field : PdfField -> bool 

Parameters

field
PdfField
Check whether object is present in the field collection or not.

Return Value

Boolean
true if field is present in the collection, otherwise, false.

See Also