FDFFieldIterator Class |
Namespace: pdftron.FDF
public sealed class FDFFieldIterator : IClosable
The FDFFieldIterator type exposes the following members.
Name | Description | |
---|---|---|
Close | ||
Current | get the current FDFFieldIterator
| |
Equals | check if equals to another FDFFieldIterator | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
HasNext | check if there are more elements for the iterator
| |
Next | advance FDFFieldIterator to the next FDFField | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
for(FDFFieldIterator itr = fdf_doc.getFieldIterator(); itr.hasNext(); itr.next()) { Field name: itr.current().getName(); Field partial name: itr.current().getPartialName(); }