Class PdfFormFieldsCollection
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents a collection of fields in the PDF form of a PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormFieldsCollection : IEnumerable
- Inheritance
-
PdfFormFieldsCollection
- Implements
- Inherited Members
Properties
this[int]
Gets the form field at a given index in collection
public PdfFormField this[int index] { get; }
Parameters
index
intThe form field index in collection
Property Value
- PdfFormField
The form field at the given index
this[string]
Gets the first form field with the given name from collection
public PdfFormField this[string fieldName] { get; }
Parameters
fieldName
stringThe field name
Property Value
- PdfFormField
The form field with the given name
Methods
Add(PdfFormField)
Adds a form field to collection
public void Add(PdfFormField formField)
Parameters
formField
PdfFormFieldThe form field to be added to collection
GetEnumerator()
Gets the collection enumerator
public IEnumerator GetEnumerator()
Returns
- IEnumerator
The collection enumerator
Remove(PdfFormField)
Removes a given form field from collection
public void Remove(PdfFormField formField)
Parameters
formField
PdfFormFieldThe field to be removed from collection