All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
pdftron::FDF Namespace Reference

Classes

class  FDFDoc
 
class  FDFField
 
class  XFDFExportOptions
 

Typedefs

typedef Common::Iterator
< FDFField
FDFFieldIterator
 

Typedef Documentation

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;
* }
*

Definition at line 29 of file FDFDoc.h.