pdftron::FDF Namespace Reference


Classes

class  FDFDoc
 FDFDoc is a class representing Forms Data Format (FDF) documents. More...
class  FDFField

Typedefs

typedef Common::Iterator
< FDFField
FDFFieldIterator
 FDFFieldIterator is an iterator type used to traverse interactive form fields in a FDF document.

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


© 2002-2010 PDFTron Systems Inc.