Click or drag to resize

FDFFieldIterator Class

FDFFieldIterator is an iterator type used to traverse interactive form fields in a FDF document. A FDFFieldIterator points to FDF.FDFField nodes or to the null FDFField node.
Inheritance Hierarchy
SystemObject
  pdftron.FDFFDFFieldIterator

Namespace:  pdftron.FDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public sealed class FDFFieldIterator : IClosable

The FDFFieldIterator type exposes the following members.

Methods
  NameDescription
Public methodClose
Public methodCurrent
get the current FDFFieldIterator
Public methodEquals
check if equals to another FDFFieldIterator
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasNext
check if there are more elements for the iterator
Public methodNext
advance FDFFieldIterator to the next FDFField
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Examples
A sample use case:
for(FDFFieldIterator itr = fdf_doc.getFieldIterator(); itr.hasNext(); itr.next()) {
Field name: itr.current().getName();
Field partial name: itr.current().getPartialName();
}
See Also