Loading...
Searching...
No Matches
pdftron::FDF Namespace Reference

Classes

class  FDFDoc
class  FDFField
class  XFDFExportOptions

Typedefs

typedef Common::Iterator< FDFFieldFDFFieldIterator

Typedef Documentation

◆ FDFFieldIterator

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 FDFDoc.h:29

Definition at line 29 of file FDFDoc.h.