Click or drag to resize

PdfiumFPDFInterForm_ExportToFDF Method

Export fields into Forms Data Format (FDF) document

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static IntPtr FPDFInterForm_ExportToFDF(
	IntPtr interForm,
	string pdf_path,
	bool bSimpleFileSpec = false
)

Parameters

interForm  IntPtr
Handle to interactive forms. Returned by FORM_GetInterForm(IntPtr) function.
pdf_path  String
Path to the source file: the PDF document file that this FDF file was exported from.
bSimpleFileSpec  Boolean  (Optional)
True for simple file specification, false otherwise/

Return Value

IntPtr
New FDF document
Remarks
A PDF file can refer to the contents of another file by using a file specification (PDF 1.1), which can take either of two forms:
  • A simple file specification gives just the name of the target file in a standard format, independent of the naming conventions of any particular file system. It can take the form of either a string or a dictionary
  • A full file specification includes information related to one or more specific file systems. It can only be represented as a dictionary.
See Also