Click or drag to resize

PdfInteractiveFormsExportToFdf Method

Export fields into Forms Data Format (FDF) document

Namespace: Patagames.Pdf.Net
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.100.2704
Syntax
public FdfDocument ExportToFdf(
	string pathToPdf,
	bool isSimpleSpec = false
)

Parameters

pathToPdf  String
Path to the source file: the PDF document file that this FDF file was exported from.
isSimpleSpec  Boolean  (Optional)
True for simple file specification, false otherwise

Return Value

FdfDocument
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