FDF Classes
-
FDFDoc is a class representing Forms Data Format (FDF) documents. FDF is typically used when submitting form data to a server, receiving the response, and incorporating it into the interactive form. It can also be used to export form data to stand-alone files that can be stored, transmitted electronically, and imported back into the corresponding PDF interactive form. In addition, beginning in PDF 1.3, FDF can be used to define a container for annotations that are separate from the PDF document to which they apply.
Note: While the constructor does not, a few methods in FDFDoc will cause it to count as a document for the consumption-based licensing if was not created through PDFDoc::FDFExtract(). Please consult individual API documentation for exact details.
See moreDeclaration
Objective-C
@interface PTFDFDoc : NSObject
Swift
class PTFDFDoc : NSObject
-
Undocumented
See moreDeclaration
Objective-C
@interface PTFDFField : NSObject { } - (PTObj*)GetValue; - (void)SetValue: (PTObj*)value; - (NSString *)GetName; - (NSString *)GetPartialName; - (PTObj*)GetSDFObj; - (PTObj*)FindAttribute: (NSString *)attrib; - (instancetype)initWithField_dict: (PTObj*)field_dict fdf_dict: (PTObj*)fdf_dict; @end
Swift
class PTFDFField : NSObject
-
Undocumented
See moreDeclaration
Objective-C
@interface PTFDFFieldIterator : NSObject { } - (void)Next; - (PTFDFField*)Current; - (BOOL)HasNext; - (instancetype)init; @end
Swift
class PTFDFFieldIterator : NSObject