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. A sample use case:
for(
FDFFieldIterator itr = fdf_doc.GetFieldIterator(); itr.HasNext(); itr.Next()) {
cout << "Field name: " << itr.Current().GetName() << endl;
cout << "Field partial name: " << itr.Current().GetPartialName() << endl;
}
Common::Iterator< FDFField > FDFFieldIterator
Definition at line 29 of file FDFDoc.h.